diff --git a/index.html b/index.html index 630274e..5fb1b5c 100644 --- a/index.html +++ b/index.html @@ -250,7 +250,7 @@

Extensibility

     interface mixin InnerHTML {
-      [CEReactions] attribute [LegacyNullToEmptyString] DOMString innerHTML;
+      [CEReactions] attribute [LegacyNullToEmptyString] HTMLString innerHTML;
     };
 
     Element includes InnerHTML;
@@ -305,8 +305,8 @@ 

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

+ + The Trusted Types [[TRUSTED-TYPES]] specification defines: + +
diff --git a/respecConfig.js b/respecConfig.js index a054135..f223967 100644 --- a/respecConfig.js +++ b/respecConfig.js @@ -10,6 +10,7 @@ var respecConfig = { //format: "markdown", shortName: "DOM-Parsing", wg: ["Web Platform Working Group"], + group: "wg/webapps", wgURI: ["https://www.w3.org/WebPlatform/WG/"], license: "w3c-software-doc", wgPublicList: "www-dom",