mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2026-04-19 18:30:27 +00:00
16 lines
518 B
Text
16 lines
518 B
Text
|
|
#import <CSS/CSSConditionRule.idl>
|
||
|
|
|
||
|
|
// https://drafts.csswg.org/css-conditional-5/#dictdef-csscontainercondition
|
||
|
|
dictionary CSSContainerCondition {
|
||
|
|
required CSSOMString name;
|
||
|
|
required CSSOMString query;
|
||
|
|
};
|
||
|
|
|
||
|
|
// https://drafts.csswg.org/css-conditional-5/#csscontainerrule
|
||
|
|
[Exposed=Window]
|
||
|
|
interface CSSContainerRule : CSSConditionRule {
|
||
|
|
readonly attribute CSSOMString containerName;
|
||
|
|
readonly attribute CSSOMString containerQuery;
|
||
|
|
readonly attribute FrozenArray<CSSContainerCondition> conditions;
|
||
|
|
};
|