diff --git a/index.html b/index.html index 630274e..5fb1b5c 100644 --- a/index.html +++ b/index.html @@ -250,7 +250,7 @@
interface mixin InnerHTML { - [CEReactions] attribute [LegacyNullToEmptyString] DOMString innerHTML; + [CEReactions] attribute [LegacyNullToEmptyString] HTMLString innerHTML; }; Element includes InnerHTML; @@ -305,8 +305,8 @@+ + The Trusted Types [[TRUSTED-TYPES]] specification defines: + +Extensibility
partial interface Element { - [CEReactions] attribute [LegacyNullToEmptyString] DOMString outerHTML; - [CEReactions] undefined insertAdjacentHTML(DOMString position, DOMString text); + [CEReactions] attribute [LegacyNullToEmptyString] HTMLString outerHTML; + [CEReactions] undefined insertAdjacentHTML(DOMString position, HTMLString text); };@@ -482,7 +482,7 @@Extensibility
partial interface Range { - [CEReactions, NewObject] DocumentFragment createContextualFragment(DOMString fragment); + [CEReactions, NewObject] DocumentFragment createContextualFragment(HTMLString fragment); };@@ -1765,6 +1765,12 @@Dependencies