Skip to content

Commit

Permalink
improve idl
Browse files Browse the repository at this point in the history
  • Loading branch information
josepharhar committed Aug 15, 2023
1 parent bebbe37 commit 3b7e41f
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions source
Original file line number Diff line number Diff line change
Expand Up @@ -10607,6 +10607,7 @@ partial interface <dfn id="document" data-lt="">Document</dfn> {
[<span>CEReactions</span>] undefined <span data-x="dom-document-close">close</span>();
[<span>CEReactions</span>] undefined <span data-x="dom-document-write">write</span>(DOMString... text);
[<span>CEReactions</span>] undefined <span data-x="dom-document-writeln">writeln</span>(DOMString... text);
<code>Document</code> <span data-x="dom-parseHTMLUnsafe">parseHTMLUnsafe</span>(string html);

// <span>user interaction</span>
readonly attribute <span>WindowProxy</span>? <span data-x="dom-document-defaultView">defaultView</span>;
Expand Down Expand Up @@ -109031,12 +109032,8 @@ enum <dfn enum>DOMParserSupportedType</dfn> {
</dd>
</dl>

<pre><code class="idl">interface <span>Element</span> {
<pre><code class="idl">partial interface <span id="Element-partial">Element</span> {
undefined <span data-x="dom-setHTMLUnsafe">setHTMLUnsafe</span>(DOMString string);
};

interface <span>Document</span> {
static <span>Document</span> <span data-x="dom-parseHTMLUnsafe">parseHTMLUnsafe</span>(DOMString string);
};</code></pre>

<p>The <dfn method for="Element"><code
Expand Down

0 comments on commit 3b7e41f

Please sign in to comment.