File tree 2 files changed +5
-2
lines changed
2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -97,6 +97,7 @@ The {{PaintWorkletGlobalScope}} is the global execution context of the {{paintWo
97
97
<pre class='idl'>
98
98
callback VoidFunction = void ();
99
99
100
+ [Global=(Worklet,PaintWorklet),Exposed=PaintWorklet]
100
101
interface PaintWorkletGlobalScope : WorkletGlobalScope {
101
102
void registerPaint(DOMString name, VoidFunction paintCtor);
102
103
};
@@ -185,7 +186,7 @@ The 2D rendering context {#2d-rendering-context}
185
186
================================================
186
187
187
188
<pre class='idl'>
188
- [Exposed=Worklet ]
189
+ [Exposed=PaintWorklet ]
189
190
interface PaintRenderingContext2D {
190
191
};
191
192
PaintRenderingContext2D implements CanvasState;
@@ -265,7 +266,7 @@ The {{Geometry}} object represents the geometry of the image that the author sho
265
266
the <a>concrete object size</a> given by the user agent.
266
267
267
268
<pre class='idl'>
268
- [Exposed=Worklet ]
269
+ [Exposed=PaintWorklet ]
269
270
interface Geometry {
270
271
readonly attribute double width;
271
272
readonly attribute double height;
Original file line number Diff line number Diff line change @@ -130,6 +130,7 @@ The {{WorkletGlobalScope}} object provides a <dfn>worklet global scope</dfn> whi
130
130
global execution context of a {{Worklet}} .
131
131
132
132
<pre class='idl'>
133
+ [Exposed=Worklet]
133
134
interface WorkletGlobalScope {
134
135
attribute Console console;
135
136
};
@@ -340,6 +341,7 @@ partial interface Window {
340
341
<pre class='idl'>
341
342
callback Function = any (any... arguments);
342
343
344
+ [Global=(Worklet,FakeWorklet),Exposed=FakeWorklet]
343
345
interface FakeWorkletGlobalScope : WorkletGlobalScope {
344
346
void registerAnArbitaryClass(DOMString type, Function classConstructor);
345
347
};
You can’t perform that action at this time.
0 commit comments