@@ -793,7 +793,7 @@ The {{CSSMediaRule}} interface represents a ''@media'' at-rule:
793
793
[Exposed=Window]
794
794
interface CSSMediaRule : CSSConditionRule {
795
795
[SameObject, PutForwards=mediaText] readonly attribute MediaList media;
796
- readonly attribute bool matches;
796
+ readonly attribute boolean matches;
797
797
};
798
798
</pre>
799
799
@@ -809,7 +809,7 @@ js/CSSConditionRule.html
809
809
for the list of media queries specified with the ''@media'' at-rule.
810
810
<wpt title=".media returns a MediaList matching the @media condition."></wpt>
811
811
812
- <dt><code> matches</code> of type {{bool }} , readonly
812
+ <dt><code> matches</code> of type {{boolean }} , readonly
813
813
<dd> The <code> matches</code> attribute returns true
814
814
if the rule is in an stylesheet attached to a document
815
815
whose {{Window}} matches this rule’s {{CSSMediaRule/media}} [=media query=] ,
@@ -831,7 +831,7 @@ The {{CSSSupportsRule}} interface represents a ''@supports'' rule.
831
831
<pre class='idl'>
832
832
[Exposed=Window]
833
833
interface CSSSupportsRule : CSSConditionRule {
834
- readonly attribute bool matches;
834
+ readonly attribute boolean matches;
835
835
};
836
836
</pre>
837
837
@@ -841,7 +841,7 @@ js/CSSConditionRule.html
841
841
<wpt title="CSSSupportsRule represents an @supports rule."></wpt> -->
842
842
843
843
<dl class='idl-attributes'>
844
- <dt><code> matches</code> of type {{bool }} , readonly
844
+ <dt><code> matches</code> of type {{boolean }} , readonly
845
845
<dd> The <code> matches</code> attribute returns the evaluation of
846
846
the [=CSS feature query=] represented in {{CSSConditionRule/conditionText}} .
847
847
<wpt title="CSSSupportsRule.matches returns true if matches feature query"></wpt>
0 commit comments