ladybird/Libraries/LibWeb/CSS/CSSMarginRule.idl

8 lines
351 B
Text
Raw Normal View History

// 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;
};