mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-09 21:00:42 +02:00
Automatic update from web-platform-tests Update interfaces/css-conditional.idl (#17594) Source: https://github.com/tidoust/reffy-reports/blob/4daf423/whatwg/idl/css-conditional.idl Build: https://travis-ci.org/tidoust/reffy-reports/builds/553126765 -- wpt-commits: 4beda31498f85ded322ea4d55870973000364ac4 wpt-pr: 17594
27 lines
773 B
Text
27 lines
773 B
Text
// GENERATED CONTENT - DO NOT EDIT
|
|
// Content was automatically extracted by Reffy into reffy-reports
|
|
// (https://github.com/tidoust/reffy-reports)
|
|
// Source: CSS Conditional Rules Module Level 3 (https://drafts.csswg.org/css-conditional-3/)
|
|
|
|
partial interface CSSRule {
|
|
const unsigned short SUPPORTS_RULE = 12;
|
|
};
|
|
|
|
[Exposed=Window]
|
|
interface CSSConditionRule : CSSGroupingRule {
|
|
attribute CSSOMString conditionText;
|
|
};
|
|
|
|
[Exposed=Window]
|
|
interface CSSMediaRule : CSSConditionRule {
|
|
[SameObject, PutForwards=mediaText] readonly attribute MediaList media;
|
|
};
|
|
|
|
[Exposed=Window]
|
|
interface CSSSupportsRule : CSSConditionRule {
|
|
};
|
|
|
|
partial namespace CSS {
|
|
boolean supports(CSSOMString property, CSSOMString value);
|
|
boolean supports(CSSOMString conditionText);
|
|
};
|