Skip to content

Commit 587ab73

Browse files
committed
[css-properties-values-api] Move the CSSOM updates to the CSSOM section where they belong.
1 parent 286463b commit 587ab73

File tree

1 file changed

+46
-46
lines changed

1 file changed

+46
-46
lines changed

css-properties-values-api/Overview.bs

+46-46
Original file line numberDiff line numberDiff line change
@@ -476,52 +476,6 @@ the following conditions must be met for the the ''@property'' rule to be valid:
476476
If the above conditions are not met, the ''@property'' rule is invalid.
477477

478478

479-
Extensions to the {{CSSRule}} Interface {#extensions-to-css-rule-interface}
480-
------------------------------------------------------------------------------------
481-
482-
The {{CSSRule}} interface is extended as follows:
483-
484-
<pre class='idl'>
485-
partial interface CSSRule {
486-
const unsigned short PROPERTY_RULE = 18;
487-
};
488-
</pre>
489-
490-
The <dfn interface>CSSPropertyRule</dfn> Interface {#the-css-property-rule-interface}
491-
-----------------------------------------------------------------------------
492-
493-
The {{CSSPropertyRule}} interface represents an ''@property'' rule.
494-
495-
<pre class='idl' export>
496-
[Exposed=Window]
497-
interface CSSPropertyRule : CSSRule {
498-
readonly attribute CSSOMString name;
499-
readonly attribute CSSOMString syntax;
500-
readonly attribute boolean inherits;
501-
readonly attribute CSSOMString? initialValue;
502-
};
503-
</pre>
504-
505-
<dl dfn-for=CSSPropertyRule dfn-type=attribute>
506-
<dt><dfn>name</dfn>
507-
<dd>
508-
The custom property name associated with the ''@property'' rule.
509-
510-
<dt><dfn>syntax</dfn>
511-
<dd>
512-
The syntax associated with the ''@property'', exactly as specified.
513-
514-
<dt><dfn>inherits</dfn>
515-
<dd>
516-
The inherits descriptor associated with the ''@property'' rule.
517-
518-
<dt><dfn>initialValue</dfn>
519-
<dd>
520-
The initial value associated with the ''@property'' rule,
521-
which may not be present.
522-
</dl>
523-
524-
525479
<!--
526480
██ ██████
527481
██ ██ ██
@@ -1129,6 +1083,52 @@ CSSOM {#cssom}
11291083
treat all custom properties as unregistered.
11301084
</div>
11311085

1086+
1087+
Extensions to the {{CSSRule}} Interface {#extensions-to-css-rule-interface}
1088+
------------------------------------------------------------------------------------
1089+
1090+
The {{CSSRule}} interface is extended as follows:
1091+
1092+
<pre class='idl'>
1093+
partial interface CSSRule {
1094+
const unsigned short PROPERTY_RULE = 18;
1095+
};
1096+
</pre>
1097+
1098+
The <dfn interface>CSSPropertyRule</dfn> Interface {#the-css-property-rule-interface}
1099+
-----------------------------------------------------------------------------
1100+
1101+
The {{CSSPropertyRule}} interface represents an ''@property'' rule.
1102+
1103+
<pre class='idl' export>
1104+
[Exposed=Window]
1105+
interface CSSPropertyRule : CSSRule {
1106+
readonly attribute CSSOMString name;
1107+
readonly attribute CSSOMString syntax;
1108+
readonly attribute boolean inherits;
1109+
readonly attribute CSSOMString? initialValue;
1110+
};
1111+
</pre>
1112+
1113+
<dl dfn-for=CSSPropertyRule dfn-type=attribute>
1114+
<dt><dfn>name</dfn>
1115+
<dd>
1116+
The custom property name associated with the ''@property'' rule.
1117+
1118+
<dt><dfn>syntax</dfn>
1119+
<dd>
1120+
The syntax associated with the ''@property'', exactly as specified.
1121+
1122+
<dt><dfn>inherits</dfn>
1123+
<dd>
1124+
The inherits descriptor associated with the ''@property'' rule.
1125+
1126+
<dt><dfn>initialValue</dfn>
1127+
<dd>
1128+
The initial value associated with the ''@property'' rule,
1129+
which may not be present.
1130+
</dl>
1131+
11321132
{{CSSStyleValue}} Reification {#css-style-value-reification}
11331133
------------------------------------------------------------
11341134

0 commit comments

Comments
 (0)