diff --git a/Libraries/LibWeb/Parser/CSSParser.cpp b/Libraries/LibWeb/Parser/CSSParser.cpp index a8ac658606..9759173f87 100644 --- a/Libraries/LibWeb/Parser/CSSParser.cpp +++ b/Libraries/LibWeb/Parser/CSSParser.cpp @@ -492,6 +492,9 @@ public: } continue; } + // FIXME: This is a hack that will go away when we replace this with a big boy CSS parser. + if (ch == '\\') + ch = consume_one(); buffer.append(ch); } if (in_value)