mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-28 04:08:08 +00:00
This patch makes both of these classes inherit from RefCounted and Bindings::Wrappable, plus some minimal rejigging to allow us to keep using them internally while also exposing them to web content.
7 lines
281 B
Plaintext
7 lines
281 B
Plaintext
interface CSSStyleSheet : StyleSheet {
|
|
// readonly attribute CSSRule? ownerRule;
|
|
[SameObject] readonly attribute CSSRuleList cssRules;
|
|
// unsigned long insertRule(CSSOMString rule, optional unsigned long index = 0);
|
|
// undefined deleteRule(unsigned long index);
|
|
};
|