mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-25 17:25:08 +02:00
These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
8 lines
351 B
Plaintext
8 lines
351 B
Plaintext
// https://drafts.csswg.org/cssom/#cssmarginrule
|
|
[Exposed=Window]
|
|
interface CSSMarginRule : CSSRule {
|
|
readonly attribute CSSOMString name;
|
|
// FIXME: This should be CSSMarginDescriptors, but that has no spec. https://github.com/w3c/csswg-drafts/issues/10106
|
|
[SameObject, PutForwards=cssText] readonly attribute CSSStyleProperties style;
|
|
};
|