File tree 1 file changed +7
-5
lines changed
1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -184,10 +184,12 @@ called, the user agent <em>must</em> run the following steps:
184
184
7. If the result of <a>Type</a> (|prototype|) is not Object, <a>throw</a> a <a>TypeError</a> and
185
185
abort all these steps.
186
186
187
- 8. If the result of <a>IsCallable</a> (<a>Get</a> (|prototype|, "paint")) is false, <a>throw</a> a
188
- <a>TypeError</a> and abort all these steps.
187
+ 8. Let |paint| be the result of <a>Get</a> (|prototype|, "paint").
189
188
190
- 9. Let |definition| be a new <a>paint image definition</a> with:
189
+ 9. If the result of <a>IsCallable</a> (|paint|) is false, <a>throw</a> a <a>TypeError</a> and
190
+ abort all these steps.
191
+
192
+ 10. Let |definition| be a new <a>paint image definition</a> with:
191
193
192
194
- <a>paint image name</a> being |name|
193
195
@@ -197,10 +199,10 @@ called, the user agent <em>must</em> run the following steps:
197
199
198
200
- <a>class constructor valid flag</a> being true
199
201
200
- 10 . Add the key-value pair (|name| - |inputProperties|) to the <a>paint name to input properties
202
+ 11 . Add the key-value pair (|name| - |inputProperties|) to the <a>paint name to input properties
201
203
map</a> of the associated <a>document</a> .
202
204
203
- 11 . Add the key-value pair (|name| - |definition|) to the <a>paint name to paint image
205
+ 12 . Add the key-value pair (|name| - |definition|) to the <a>paint name to paint image
204
206
definition map</a> of the associated <a>document</a> .
205
207
206
208
You can’t perform that action at this time.
0 commit comments