Skip to content

Commit 95b9ffb

Browse files
committed
Update for Web IDL extended attribute changes
[TreatNullAs=EmptyString] → [LegacyNullToEmptyString], following whatwg/webidl#870.
1 parent 10b6b91 commit 95b9ffb

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

index.html

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ <h2>Extensibility</h2>
250250

251251
<pre class="idl">
252252
interface mixin InnerHTML {
253-
[CEReactions] attribute [TreatNullAs=EmptyString] DOMString innerHTML;
253+
[CEReactions] attribute [LegacyNullToEmptyString] DOMString innerHTML;
254254
};
255255

256256
Element includes InnerHTML;
@@ -305,7 +305,7 @@ <h2>Extensibility</h2>
305305

306306
<pre class="idl">
307307
partial interface Element {
308-
[CEReactions] attribute [TreatNullAs=EmptyString] DOMString outerHTML;
308+
[CEReactions] attribute [LegacyNullToEmptyString] DOMString outerHTML;
309309
[CEReactions] void insertAdjacentHTML(DOMString position, DOMString text);
310310
};
311311
</pre>
@@ -1759,6 +1759,12 @@ <h2>Dependencies</h2>
17591759
<ul>
17601760
<li>The <dfn><a href="https://tc39.github.io/ecma262/#sec-error-objects">TypeError</a></dfn> exception
17611761
</ul>
1762+
1763+
The Web IDL [[WebIDL]] specification defines:
1764+
1765+
<ul>
1766+
<li>The <dfn data-lt="LegacyNullToEmptyString"><a href="https://heycam.github.io/webidl/#LegacyNullToEmptyString">[LegacyNullToEmptyString]</a></dfn> IDL <a>extended attribute</a>
1767+
</ul>
17621768
</section>
17631769

17641770
<section class=appendix>

0 commit comments

Comments
 (0)