Skip to content

Commit

Permalink
[css-layout-api][css-paint-api][css-properties-values-api] Use partia…
Browse files Browse the repository at this point in the history
…l namespace CSS (#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.
  • Loading branch information
foolip authored and tabatkins committed Jul 23, 2018
1 parent ff17713 commit ae89eba
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion css-layout-api/Overview.bs
Original file line number Diff line number Diff line change
Expand Up @@ -1369,7 +1369,7 @@ which are related to layout.
The {{layoutWorklet}}'s <a>worklet global scope type</a> is {{LayoutWorkletGlobalScope}}.

<pre class='idl'>
partial interface CSS {
partial namespace CSS {
[SameObject] readonly attribute Worklet layoutWorklet;
};
</pre>
Expand Down
2 changes: 1 addition & 1 deletion css-paint-api/Overview.bs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ which are related to painting.
The {{paintWorklet}}'s <a>worklet global scope type</a> is {{PaintWorkletGlobalScope}}.

<pre class='idl'>
partial interface CSS {
partial namespace CSS {
[SameObject] readonly attribute Worklet paintWorklet;
};
</pre>
Expand Down
4 changes: 2 additions & 2 deletions css-properties-values-api/Overview.bs
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ dictionary PropertyDescriptor {
DOMString initialValue;
};

partial interface CSS {
static void registerProperty(PropertyDescriptor descriptor);
partial namespace CSS {
void registerProperty(PropertyDescriptor descriptor);
};
</pre>

Expand Down

0 comments on commit ae89eba

Please sign in to comment.