Skip to content

Commit e82484c

Browse files
bathosannevk
authored andcommitted
Correct placement of TreatNullAs extended attributes
Closes #55.
1 parent 7fbc19e commit e82484c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

index.html

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

321321
<pre class="idl">
322322
interface mixin InnerHTML {
323-
[CEReactions, TreatNullAs=EmptyString] attribute DOMString innerHTML;
323+
[CEReactions] attribute [TreatNullAs=EmptyString] DOMString innerHTML;
324324
};
325325

326326
Element includes InnerHTML;
@@ -375,7 +375,7 @@ <h2>Extensibility</h2>
375375

376376
<pre class="idl">
377377
partial interface Element {
378-
[CEReactions, TreatNullAs=EmptyString] attribute DOMString outerHTML;
378+
[CEReactions] attribute [TreatNullAs=EmptyString] DOMString outerHTML;
379379
[CEReactions] void insertAdjacentHTML(DOMString position, DOMString text);
380380
};
381381
</pre>

0 commit comments

Comments
 (0)