From 20d9b8cb5b7a929c0325efb19b2edf8dc7db554c Mon Sep 17 00:00:00 2001 From: Sam Atkins Date: Mon, 3 Feb 2025 17:16:49 +0000 Subject: [PATCH] LibWeb/SVG: Rename text-space-collapse to white-space-collapse This is the current name for this property in CSS-Text-4. We don't implement it, but at least our "missing property" message can be about one we haven't implemented instead of one that's redundant. :^) --- Libraries/LibWeb/SVG/Default.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/LibWeb/SVG/Default.css b/Libraries/LibWeb/SVG/Default.css index ebea1b6f3962..e4c8c26890aa 100644 --- a/Libraries/LibWeb/SVG/Default.css +++ b/Libraries/LibWeb/SVG/Default.css @@ -11,7 +11,7 @@ svg:not(:root), image, marker, pattern, symbol { overflow: hidden; } } *[xml|space=preserve] { - text-space-collapse: preserve-spaces; + white-space-collapse: preserve-spaces; } /* FIXME: Allow setting the rest of these to `display: none`.