ladybird/Userland
Sam Atkins e4245dc39e LibWeb/CSS: Process style properties from CSSNestedDeclarations rules
These are created when a style rule has properties listed after another
rule. For example:

```css

.test {
  --a: 1;
  --b: 1;
  --c: 1;

  .thing {
    /* ... */
  }

  /* These are after a rule (.thing) so they're wrapped in a
     CSSNestedDeclarations: */
  --d: 1;
  --e: 1;
  --f: 1;
}
```

They're treated like a nested style rule with the exact same selectors
as their containing style rule.
2024-10-17 20:55:55 +02:00
..
Libraries LibWeb/CSS: Process style properties from CSSNestedDeclarations rules 2024-10-17 20:55:55 +02:00
Services LibWeb: Rename Layout::Node::paintable() to first_paintable() 2024-10-16 20:25:42 +02:00
Utilities LibWeb+LibXML: Cache the result of parsing the XHTML DTD and reuse it 2024-10-13 00:24:44 +02:00