Skip to content

Commit 8a9669d

Browse files
Adds Exposed to relevant interfaces.
Fix #31
1 parent 9be30e8 commit 8a9669d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

index.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ <h2>Extensibility</h2>
206206
<section><h2>The <code>DOMParser</code> interface</h2>
207207

208208
<pre class=idl>
209-
[Constructor]
209+
[Constructor, Exposed=Window]
210210
interface DOMParser {
211211
[NewObject] Document parseFromString(DOMString str, SupportedType type);
212212
};
@@ -292,7 +292,8 @@ <h2>Extensibility</h2>
292292
<section><h2>The <code>XMLSerializer</code> interface</h2>
293293

294294
<pre class="idl">
295-
[Constructor] interface XMLSerializer {
295+
[Constructor, Exposed=Window]
296+
interface XMLSerializer {
296297
DOMString serializeToString(Node root);
297298
};
298299
</pre>

0 commit comments

Comments
 (0)