ladybird/Libraries/LibWeb/CSS/CSSPageRule.idl
Sam Atkins aaf07ae30d LibWeb: Add basic implementation of @page
This doesn't support selectors, and the only descriptors for now are for
margins.
2025-05-15 09:53:29 +01:00

9 lines
304 B
Text

#import <CSS/CSSGroupingRule.idl>
#import <CSS/CSSPageDescriptors.idl>
// https://drafts.csswg.org/cssom/#csspagerule
[Exposed=Window]
interface CSSPageRule : CSSGroupingRule {
attribute CSSOMString selectorText;
[SameObject, PutForwards=cssText] readonly attribute CSSPageDescriptors style;
};