mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-14 21:11:57 +00:00
The regression in the "conditional-CSSGroupingRule" test is we now fail the "inserting an `@import`" subtests differently and the subtests aren't independent. Specifically, we don't yet implement the checks in `CSSRuleList::insert_a_css_rule()` that reject certain rules from being inserted. Previously we didn't insert the `@import` rule because we failed to parse its relative URL. Now we parse it correctly, we end up inserting it.
4 lines
232 B
Text
4 lines
232 B
Text
cssText: @import url("https://something.invalid") supports(foo: bar);
|
|
supportsText: foo: bar
|
|
cssText: @import url("https://something.invalid") supports((display: block) and (foo: bar));
|
|
supportsText: (display: block) and (foo: bar)
|