Skip to content

Commit ae89eba

Browse files
fooliptabatkins
authored andcommitted
[css-layout-api][css-paint-api][css-properties-values-api] Use partial namespace CSS (w3c#784)
CSSOM and other CSS specs were updated in w3c/csswg-drafts#437. Fixes https://www.w3.org/Bugs/Public/show_bug.cgi?id=29623.
1 parent ff17713 commit ae89eba

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

css-layout-api/Overview.bs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1369,7 +1369,7 @@ which are related to layout.
13691369
The {{layoutWorklet}}'s <a>worklet global scope type</a> is {{LayoutWorkletGlobalScope}}.
13701370

13711371
<pre class='idl'>
1372-
partial interface CSS {
1372+
partial namespace CSS {
13731373
[SameObject] readonly attribute Worklet layoutWorklet;
13741374
};
13751375
</pre>

css-paint-api/Overview.bs

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ which are related to painting.
9090
The {{paintWorklet}}'s <a>worklet global scope type</a> is {{PaintWorkletGlobalScope}}.
9191

9292
<pre class='idl'>
93-
partial interface CSS {
93+
partial namespace CSS {
9494
[SameObject] readonly attribute Worklet paintWorklet;
9595
};
9696
</pre>

css-properties-values-api/Overview.bs

+2-2
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ dictionary PropertyDescriptor {
7272
DOMString initialValue;
7373
};
7474

75-
partial interface CSS {
76-
static void registerProperty(PropertyDescriptor descriptor);
75+
partial namespace CSS {
76+
void registerProperty(PropertyDescriptor descriptor);
7777
};
7878
</pre>
7979

0 commit comments

Comments
 (0)