From a6b95303de74a22b9cfeb8a110d599838ceb9529 Mon Sep 17 00:00:00 2001 From: dzenana-trenutak Date: Mon, 18 Mar 2013 14:14:50 -0400 Subject: [PATCH 1/3] Add WebIDL tests for sections and for grouping-content --- .../grouping-content/grouping_WebIDL.html | 95 ++++++++++++++++++ html/semantics/sections/sections_WebIDL.html | 99 +++++++++++++++++++ 2 files changed, 194 insertions(+) create mode 100644 html/semantics/grouping-content/grouping_WebIDL.html create mode 100644 html/semantics/sections/sections_WebIDL.html diff --git a/html/semantics/grouping-content/grouping_WebIDL.html b/html/semantics/grouping-content/grouping_WebIDL.html new file mode 100644 index 00000000000000..34cfecb1d069f7 --- /dev/null +++ b/html/semantics/grouping-content/grouping_WebIDL.html @@ -0,0 +1,95 @@ + + + + + WebIDL Tests: HTML Grouping + + + + + + + + + + + + + + + + + +

idlharness test

+

This test validates the WebIDL contained within the HTML5 CR "grouping content" section.

+ + + + + +
+    interface HTMLParagraphElement : HTMLElement {};
+    interface HTMLHRElement : HTMLElement {};
+    interface HTMLPreElement : HTMLElement {};
+    interface HTMLQuoteElement : HTMLElement {
+           attribute DOMString cite;
+    };
+    interface HTMLOListElement : HTMLElement {
+           attribute boolean reversed;
+           attribute long start;
+           attribute DOMString type;
+    };
+    interface HTMLUListElement : HTMLElement {};
+    interface HTMLLIElement : HTMLElement {
+           attribute long value;
+    };
+    interface HTMLDListElement : HTMLElement {};
+    interface HTMLDivElement : HTMLElement {};
+
+ + + +
+ + + diff --git a/html/semantics/sections/sections_WebIDL.html b/html/semantics/sections/sections_WebIDL.html new file mode 100644 index 00000000000000..f57f9bf20f9979 --- /dev/null +++ b/html/semantics/sections/sections_WebIDL.html @@ -0,0 +1,99 @@ + + + + + WebIDL Tests: HTML Sections + + + + + + + + + + +

idlharness test

+

This test validates the WebIDL contained within the HTML5 CR "sections" section.

+ +
+ +

Test This

+

Test This

+

Test This

+

Test This

+
Test This
+
Test This
+ +
+ + + +
+
+    interface HTMLBodyElement : HTMLElement {
+           attribute EventHandler onafterprint;
+           attribute EventHandler onbeforeprint;
+           attribute EventHandler onbeforeunload;
+           attribute EventHandler onblur;
+           attribute OnErrorEventHandler onerror;
+           attribute EventHandler onfocus;
+           attribute EventHandler onhashchange;
+           attribute EventHandler onload;
+           attribute EventHandler onmessage;
+           attribute EventHandler onoffline;
+           attribute EventHandler ononline;
+           attribute EventHandler onpopstate;
+           attribute EventHandler onpagehide;
+           attribute EventHandler onpageshow;
+           attribute EventHandler onresize;
+           attribute EventHandler onscroll;
+           attribute EventHandler onstorage;
+           attribute EventHandler onunload;
+    };
+
+    interface HTMLHeadingElement : HTMLElement {};
+
+
+ + + +
+ + + From 4d7034da2455ec1d620927c5ffd45972e3484779 Mon Sep 17 00:00:00 2001 From: dzenana-trenutak Date: Thu, 4 Apr 2013 12:54:24 -0400 Subject: [PATCH 2/3] selection of WebIDL tests for sections and grouping-content sections --- .../grouping_WebIDL_allTested.html | 772 +++++++++++++++++ .../grouping_WebIDL_dummies.html | 97 +++ .../grouping_WebIDL_fullIDL.html | 772 +++++++++++++++++ .../grouping_WebIDL_preventedMultiple.html | 773 ++++++++++++++++++ ...ng_WebIDL_preventedMultiple_allTested.html | 773 ++++++++++++++++++ .../sections/sections_WebIDL_allTested.html | 764 +++++++++++++++++ .../sections/sections_WebIDL_dummies.html | 99 +++ .../sections/sections_WebIDL_fullIDL.html | 762 +++++++++++++++++ .../sections_WebIDL_preventedMultiple.html | 765 +++++++++++++++++ ...ns_WebIDL_preventedMultiple_allTested.html | 765 +++++++++++++++++ 10 files changed, 6342 insertions(+) create mode 100644 html/semantics/grouping-content/grouping_WebIDL_allTested.html create mode 100644 html/semantics/grouping-content/grouping_WebIDL_dummies.html create mode 100644 html/semantics/grouping-content/grouping_WebIDL_fullIDL.html create mode 100644 html/semantics/grouping-content/grouping_WebIDL_preventedMultiple.html create mode 100644 html/semantics/grouping-content/grouping_WebIDL_preventedMultiple_allTested.html create mode 100644 html/semantics/sections/sections_WebIDL_allTested.html create mode 100644 html/semantics/sections/sections_WebIDL_dummies.html create mode 100644 html/semantics/sections/sections_WebIDL_fullIDL.html create mode 100644 html/semantics/sections/sections_WebIDL_preventedMultiple.html create mode 100644 html/semantics/sections/sections_WebIDL_preventedMultiple_allTested.html diff --git a/html/semantics/grouping-content/grouping_WebIDL_allTested.html b/html/semantics/grouping-content/grouping_WebIDL_allTested.html new file mode 100644 index 00000000000000..15780486e3050a --- /dev/null +++ b/html/semantics/grouping-content/grouping_WebIDL_allTested.html @@ -0,0 +1,772 @@ + + + + + WebIDL Tests: HTML Grouping + + + + + + + + + + + + + + + + + +

idlharness test

+

This test validates the WebIDL contained within the HTML5 CR "grouping content" section:

+

the p, hr, pre, blockquote, ol, ul, li, dl, and div elements.

+ + + +
+    interface HTMLParagraphElement : HTMLElement {};
+    interface HTMLHRElement : HTMLElement {};
+    interface HTMLPreElement : HTMLElement {};
+    interface HTMLQuoteElement : HTMLElement {
+           attribute DOMString cite;
+    };
+    interface HTMLOListElement : HTMLElement {
+           attribute boolean reversed;
+           attribute long start;
+           attribute DOMString type;
+    };
+    interface HTMLUListElement : HTMLElement {};
+    interface HTMLLIElement : HTMLElement {
+           attribute long value;
+    };
+    interface HTMLDListElement : HTMLElement {};
+    interface HTMLDivElement : HTMLElement {};
+
+ +

NOTE, for the tests to run, SOME WEBIDL WAS COMMENTED OUT as follows:

+ +
+
+// typedef sequence CSSRuleList;
+
+// interface HTMLCollection {};
+
+[Constructor]  
+interface Document : Node {
+    ...
+  // HTMLCollection getElementsByTagName(DOMString localName);   
+  // HTMLCollection getElementsByTagNameNS(DOMString? namespace, DOMString localName); 
+  // HTMLCollection getElementsByClassName(DOMString classNames); 
+
+//callback 
+interface NodeFilter {
+
+// callback       
+interface EventListener {
+
+
+ + + + + + + +
+ + + diff --git a/html/semantics/grouping-content/grouping_WebIDL_dummies.html b/html/semantics/grouping-content/grouping_WebIDL_dummies.html new file mode 100644 index 00000000000000..ce5f799b63ea69 --- /dev/null +++ b/html/semantics/grouping-content/grouping_WebIDL_dummies.html @@ -0,0 +1,97 @@ + + + + + WebIDL Tests: HTML Grouping + + + + + + + + + + + + + + + + + +

idlharness test

+

This test validates the WebIDL contained within the HTML5 CR "grouping content" section:

+

the p, hr, pre, blockquote, ol, ul, li, dl, and div elements.

+ + + +
+    interface HTMLParagraphElement : HTMLElement {};
+    interface HTMLHRElement : HTMLElement {};
+    interface HTMLPreElement : HTMLElement {};
+    interface HTMLQuoteElement : HTMLElement {
+           attribute DOMString cite;
+    };
+    interface HTMLOListElement : HTMLElement {
+           attribute boolean reversed;
+           attribute long start;
+           attribute DOMString type;
+    };
+    interface HTMLUListElement : HTMLElement {};
+    interface HTMLLIElement : HTMLElement {
+           attribute long value;
+    };
+    interface HTMLDListElement : HTMLElement {};
+    interface HTMLDivElement : HTMLElement {};
+
+ + + + + +
+ + + diff --git a/html/semantics/grouping-content/grouping_WebIDL_fullIDL.html b/html/semantics/grouping-content/grouping_WebIDL_fullIDL.html new file mode 100644 index 00000000000000..a254df48b8c757 --- /dev/null +++ b/html/semantics/grouping-content/grouping_WebIDL_fullIDL.html @@ -0,0 +1,772 @@ + + + + + WebIDL Tests: HTML Grouping + + + + + + + + + + + + + + + + + +

idlharness test

+

This test validates the WebIDL contained within the HTML5 CR "grouping content" section:

+

the p, hr, pre, blockquote, ol, ul, li, dl, and div elements.

+ + + +
+    interface HTMLParagraphElement : HTMLElement {};
+    interface HTMLHRElement : HTMLElement {};
+    interface HTMLPreElement : HTMLElement {};
+    interface HTMLQuoteElement : HTMLElement {
+           attribute DOMString cite;
+    };
+    interface HTMLOListElement : HTMLElement {
+           attribute boolean reversed;
+           attribute long start;
+           attribute DOMString type;
+    };
+    interface HTMLUListElement : HTMLElement {};
+    interface HTMLLIElement : HTMLElement {
+           attribute long value;
+    };
+    interface HTMLDListElement : HTMLElement {};
+    interface HTMLDivElement : HTMLElement {};
+
+ +

NOTE, for the tests to run, SOME "UNTESTED" WEBIDL WAS COMMENTED OUT as follows:

+ +
+
+// typedef sequence CSSRuleList;
+
+// interface HTMLCollection {};
+
+[Constructor]  
+interface Document : Node {
+    ...
+  // HTMLCollection getElementsByTagName(DOMString localName);   
+  // HTMLCollection getElementsByTagNameNS(DOMString? namespace, DOMString localName); 
+  // HTMLCollection getElementsByClassName(DOMString classNames); 
+
+//callback 
+interface NodeFilter {
+
+// callback       
+interface EventListener {
+
+
+ + + + + + + +
+ + + diff --git a/html/semantics/grouping-content/grouping_WebIDL_preventedMultiple.html b/html/semantics/grouping-content/grouping_WebIDL_preventedMultiple.html new file mode 100644 index 00000000000000..4c9650cc569e07 --- /dev/null +++ b/html/semantics/grouping-content/grouping_WebIDL_preventedMultiple.html @@ -0,0 +1,773 @@ + + + + + WebIDL Tests: HTML Grouping + + + + + + + + + + + + + + + + + +

idlharness test

+

This test validates the WebIDL contained within the HTML5 CR "grouping content" section:

+

the p, hr, pre, blockquote, ol, ul, li, dl, and div elements.

+ + + +
+    interface HTMLParagraphElement : HTMLElement {};
+    interface HTMLHRElement : HTMLElement {};
+    interface HTMLPreElement : HTMLElement {};
+    interface HTMLQuoteElement : HTMLElement {
+           attribute DOMString cite;
+    };
+    interface HTMLOListElement : HTMLElement {
+           attribute boolean reversed;
+           attribute long start;
+           attribute DOMString type;
+    };
+    interface HTMLUListElement : HTMLElement {};
+    interface HTMLLIElement : HTMLElement {
+           attribute long value;
+    };
+    interface HTMLDListElement : HTMLElement {};
+    interface HTMLDivElement : HTMLElement {};
+
+ +

NOTE, for the tests to run, SOME "UNTESTED" WEBIDL WAS COMMENTED OUT as follows:

+ +
+
+// typedef sequence CSSRuleList;
+
+// interface HTMLCollection {};
+
+[Constructor]  
+interface Document : Node {
+    ...
+  // HTMLCollection getElementsByTagName(DOMString localName);   
+  // HTMLCollection getElementsByTagNameNS(DOMString? namespace, DOMString localName); 
+  // HTMLCollection getElementsByClassName(DOMString classNames); 
+
+//callback 
+interface NodeFilter {
+
+// callback       
+interface EventListener {
+
+
+ + + + + + + +
+ + + diff --git a/html/semantics/grouping-content/grouping_WebIDL_preventedMultiple_allTested.html b/html/semantics/grouping-content/grouping_WebIDL_preventedMultiple_allTested.html new file mode 100644 index 00000000000000..789093c6a72922 --- /dev/null +++ b/html/semantics/grouping-content/grouping_WebIDL_preventedMultiple_allTested.html @@ -0,0 +1,773 @@ + + + + + WebIDL Tests: HTML Grouping + + + + + + + + + + + + + + + + + +

idlharness test

+

This test validates the WebIDL contained within the HTML5 CR "grouping content" section:

+

the p, hr, pre, blockquote, ol, ul, li, dl, and div elements.

+ + + +
+    interface HTMLParagraphElement : HTMLElement {};
+    interface HTMLHRElement : HTMLElement {};
+    interface HTMLPreElement : HTMLElement {};
+    interface HTMLQuoteElement : HTMLElement {
+           attribute DOMString cite;
+    };
+    interface HTMLOListElement : HTMLElement {
+           attribute boolean reversed;
+           attribute long start;
+           attribute DOMString type;
+    };
+    interface HTMLUListElement : HTMLElement {};
+    interface HTMLLIElement : HTMLElement {
+           attribute long value;
+    };
+    interface HTMLDListElement : HTMLElement {};
+    interface HTMLDivElement : HTMLElement {};
+
+ +

NOTE, for the tests to run, SOME WEBIDL WAS COMMENTED OUT as follows:

+ +
+
+// typedef sequence CSSRuleList;
+
+// interface HTMLCollection {};
+
+[Constructor]  
+interface Document : Node {
+    ...
+  // HTMLCollection getElementsByTagName(DOMString localName);   
+  // HTMLCollection getElementsByTagNameNS(DOMString? namespace, DOMString localName); 
+  // HTMLCollection getElementsByClassName(DOMString classNames); 
+
+//callback 
+interface NodeFilter {
+
+// callback       
+interface EventListener {
+
+
+ + + + + + + +
+ + + diff --git a/html/semantics/sections/sections_WebIDL_allTested.html b/html/semantics/sections/sections_WebIDL_allTested.html new file mode 100644 index 00000000000000..eafa97711898dd --- /dev/null +++ b/html/semantics/sections/sections_WebIDL_allTested.html @@ -0,0 +1,764 @@ + + + + + WebIDL Tests: HTML Sections + + + + + + + + + + +

idlharness test

+

This test validates the WebIDL within the HTML5 CR "sections" section:

+

the body element and the h1 ... h6 elements.

+ +
+ +

Test This

+

Test This

+

Test This

+

Test This

+
Test This
+
Test This
+ +
+ +
+
+    interface HTMLBodyElement : HTMLElement {
+           attribute EventHandler onafterprint;
+           attribute EventHandler onbeforeprint;
+           attribute EventHandler onbeforeunload;
+           attribute EventHandler onblur;
+           attribute OnErrorEventHandler onerror;
+           attribute EventHandler onfocus;
+           attribute EventHandler onhashchange;
+           attribute EventHandler onload;
+           attribute EventHandler onmessage;
+           attribute EventHandler onoffline;
+           attribute EventHandler ononline;
+           attribute EventHandler onpopstate;
+           attribute EventHandler onpagehide;
+           attribute EventHandler onpageshow;
+           attribute EventHandler onresize;
+           attribute EventHandler onscroll;
+           attribute EventHandler onstorage;
+           attribute EventHandler onunload;
+    };
+
+    interface HTMLHeadingElement : HTMLElement {};
+
+
+ +

NOTE, for the tests to run, SOME WEBIDL WAS COMMENTED OUT as follows:

+ +
+
+// typedef sequence CSSRuleList;
+
+// interface HTMLCollection {};
+
+[Constructor]  
+interface Document : Node {
+    ...
+  // HTMLCollection getElementsByTagName(DOMString localName);   
+  // HTMLCollection getElementsByTagNameNS(DOMString? namespace, DOMString localName); 
+  // HTMLCollection getElementsByClassName(DOMString classNames); 
+
+//callback 
+interface NodeFilter {
+
+// callback       
+interface EventListener {
+
+
+ + + + + + +
+ + + diff --git a/html/semantics/sections/sections_WebIDL_dummies.html b/html/semantics/sections/sections_WebIDL_dummies.html new file mode 100644 index 00000000000000..7236404cb6a390 --- /dev/null +++ b/html/semantics/sections/sections_WebIDL_dummies.html @@ -0,0 +1,99 @@ + + + + + WebIDL Tests: HTML Sections + + + + + + + + + + +

idlharness test

+

This test validates the WebIDL contained within the HTML5 CR "sections" section.

+ +
+ +

Test This

+

Test This

+

Test This

+

Test This

+
Test This
+
Test This
+ +
+ +
+
+    interface HTMLBodyElement : HTMLElement {
+           attribute EventHandler onafterprint;
+           attribute EventHandler onbeforeprint;
+           attribute EventHandler onbeforeunload;
+           attribute EventHandler onblur;
+           attribute OnErrorEventHandler onerror;
+           attribute EventHandler onfocus;
+           attribute EventHandler onhashchange;
+           attribute EventHandler onload;
+           attribute EventHandler onmessage;
+           attribute EventHandler onoffline;
+           attribute EventHandler ononline;
+           attribute EventHandler onpopstate;
+           attribute EventHandler onpagehide;
+           attribute EventHandler onpageshow;
+           attribute EventHandler onresize;
+           attribute EventHandler onscroll;
+           attribute EventHandler onstorage;
+           attribute EventHandler onunload;
+    };
+
+    interface HTMLHeadingElement : HTMLElement {};
+
+
+ + + + + +
+ + + diff --git a/html/semantics/sections/sections_WebIDL_fullIDL.html b/html/semantics/sections/sections_WebIDL_fullIDL.html new file mode 100644 index 00000000000000..4b79efdf407a59 --- /dev/null +++ b/html/semantics/sections/sections_WebIDL_fullIDL.html @@ -0,0 +1,762 @@ + + + + + WebIDL Tests: HTML Sections + + + + + + + + + + +

idlharness test

+

This test validates the WebIDL contained within the HTML5 CR "sections" section.

+ +
+
+    interface HTMLBodyElement : HTMLElement {
+           attribute EventHandler onafterprint;
+           attribute EventHandler onbeforeprint;
+           attribute EventHandler onbeforeunload;
+           attribute EventHandler onblur;
+           attribute OnErrorEventHandler onerror;
+           attribute EventHandler onfocus;
+           attribute EventHandler onhashchange;
+           attribute EventHandler onload;
+           attribute EventHandler onmessage;
+           attribute EventHandler onoffline;
+           attribute EventHandler ononline;
+           attribute EventHandler onpopstate;
+           attribute EventHandler onpagehide;
+           attribute EventHandler onpageshow;
+           attribute EventHandler onresize;
+           attribute EventHandler onscroll;
+           attribute EventHandler onstorage;
+           attribute EventHandler onunload;
+    };
+
+    interface HTMLHeadingElement : HTMLElement {};
+
+
+ +

NOTE, for the tests to run, SOME "UNTESTED" WEBIDL WAS COMMENTED OUT as follows:

+ +
+
+// typedef sequence CSSRuleList;
+
+// interface HTMLCollection {};
+
+[Constructor]  
+interface Document : Node {
+    ...
+  // HTMLCollection getElementsByTagName(DOMString localName);   
+  // HTMLCollection getElementsByTagNameNS(DOMString? namespace, DOMString localName); 
+  // HTMLCollection getElementsByClassName(DOMString classNames); 
+
+//callback 
+interface NodeFilter {
+
+// callback       
+interface EventListener {
+
+
+ +
+ +

Test This

+

Test This

+

Test This

+

Test This

+
Test This
+
Test This
+ +
+ + + + + +
+ + + diff --git a/html/semantics/sections/sections_WebIDL_preventedMultiple.html b/html/semantics/sections/sections_WebIDL_preventedMultiple.html new file mode 100644 index 00000000000000..7cfa36a1ab7e1c --- /dev/null +++ b/html/semantics/sections/sections_WebIDL_preventedMultiple.html @@ -0,0 +1,765 @@ + + + + + WebIDL Tests: HTML Sections + + + + + + + + + + +

idlharness test

+

This test validates the WebIDL within the HTML5 CR "sections" section:

+

the body element and the h1 ... h6 elements.

+ +
+ +

Test This

+

Test This

+

Test This

+

Test This

+
Test This
+
Test This
+ +
+ +
+
+    interface HTMLBodyElement : HTMLElement {
+           attribute EventHandler onafterprint;
+           attribute EventHandler onbeforeprint;
+           attribute EventHandler onbeforeunload;
+           attribute EventHandler onblur;
+           attribute OnErrorEventHandler onerror;
+           attribute EventHandler onfocus;
+           attribute EventHandler onhashchange;
+           attribute EventHandler onload;
+           attribute EventHandler onmessage;
+           attribute EventHandler onoffline;
+           attribute EventHandler ononline;
+           attribute EventHandler onpopstate;
+           attribute EventHandler onpagehide;
+           attribute EventHandler onpageshow;
+           attribute EventHandler onresize;
+           attribute EventHandler onscroll;
+           attribute EventHandler onstorage;
+           attribute EventHandler onunload;
+    };
+
+    interface HTMLHeadingElement : HTMLElement {};
+
+
+ +

NOTE, for the tests to run, SOME "UNTESTED" WEBIDL WAS COMMENTED OUT as follows:

+ +
+
+// typedef sequence CSSRuleList;
+
+// interface HTMLCollection {};
+
+[Constructor]  
+interface Document : Node {
+    ...
+  // HTMLCollection getElementsByTagName(DOMString localName);   
+  // HTMLCollection getElementsByTagNameNS(DOMString? namespace, DOMString localName); 
+  // HTMLCollection getElementsByClassName(DOMString classNames); 
+
+//callback 
+interface NodeFilter {
+
+// callback       
+interface EventListener {
+
+
+ + + + + + +
+ + + diff --git a/html/semantics/sections/sections_WebIDL_preventedMultiple_allTested.html b/html/semantics/sections/sections_WebIDL_preventedMultiple_allTested.html new file mode 100644 index 00000000000000..142ccc1d64c8ff --- /dev/null +++ b/html/semantics/sections/sections_WebIDL_preventedMultiple_allTested.html @@ -0,0 +1,765 @@ + + + + + WebIDL Tests: HTML Sections + + + + + + + + + + +

idlharness test

+

This test validates the WebIDL within the HTML5 CR "sections" section:

+

the body element and the h1 ... h6 elements.

+ +
+ +

Test This

+

Test This

+

Test This

+

Test This

+
Test This
+
Test This
+ +
+ +
+
+    interface HTMLBodyElement : HTMLElement {
+           attribute EventHandler onafterprint;
+           attribute EventHandler onbeforeprint;
+           attribute EventHandler onbeforeunload;
+           attribute EventHandler onblur;
+           attribute OnErrorEventHandler onerror;
+           attribute EventHandler onfocus;
+           attribute EventHandler onhashchange;
+           attribute EventHandler onload;
+           attribute EventHandler onmessage;
+           attribute EventHandler onoffline;
+           attribute EventHandler ononline;
+           attribute EventHandler onpopstate;
+           attribute EventHandler onpagehide;
+           attribute EventHandler onpageshow;
+           attribute EventHandler onresize;
+           attribute EventHandler onscroll;
+           attribute EventHandler onstorage;
+           attribute EventHandler onunload;
+    };
+
+    interface HTMLHeadingElement : HTMLElement {};
+
+
+ +

NOTE, for the tests to run, SOME WEBIDL WAS COMMENTED OUT as follows:

+ +
+
+// typedef sequence CSSRuleList;
+
+// interface HTMLCollection {};
+
+[Constructor]  
+interface Document : Node {
+    ...
+  // HTMLCollection getElementsByTagName(DOMString localName);   
+  // HTMLCollection getElementsByTagNameNS(DOMString? namespace, DOMString localName); 
+  // HTMLCollection getElementsByClassName(DOMString classNames); 
+
+//callback 
+interface NodeFilter {
+
+// callback       
+interface EventListener {
+
+
+ + + + + + +
+ + + From 659091fe428cde7352dd940e73752f4e5d6afce7 Mon Sep 17 00:00:00 2001 From: dzenana-trenutak Date: Thu, 4 Apr 2013 13:01:16 -0400 Subject: [PATCH 3/3] submitting only labeled files --- .../grouping-content/grouping_WebIDL.html | 95 ------------------ html/semantics/sections/sections_WebIDL.html | 99 ------------------- 2 files changed, 194 deletions(-) delete mode 100644 html/semantics/grouping-content/grouping_WebIDL.html delete mode 100644 html/semantics/sections/sections_WebIDL.html diff --git a/html/semantics/grouping-content/grouping_WebIDL.html b/html/semantics/grouping-content/grouping_WebIDL.html deleted file mode 100644 index 34cfecb1d069f7..00000000000000 --- a/html/semantics/grouping-content/grouping_WebIDL.html +++ /dev/null @@ -1,95 +0,0 @@ - - - - - WebIDL Tests: HTML Grouping - - - - - - - - - - - - - - - - - -

idlharness test

-

This test validates the WebIDL contained within the HTML5 CR "grouping content" section.

- - - - - -
-    interface HTMLParagraphElement : HTMLElement {};
-    interface HTMLHRElement : HTMLElement {};
-    interface HTMLPreElement : HTMLElement {};
-    interface HTMLQuoteElement : HTMLElement {
-           attribute DOMString cite;
-    };
-    interface HTMLOListElement : HTMLElement {
-           attribute boolean reversed;
-           attribute long start;
-           attribute DOMString type;
-    };
-    interface HTMLUListElement : HTMLElement {};
-    interface HTMLLIElement : HTMLElement {
-           attribute long value;
-    };
-    interface HTMLDListElement : HTMLElement {};
-    interface HTMLDivElement : HTMLElement {};
-
- - - -
- - - diff --git a/html/semantics/sections/sections_WebIDL.html b/html/semantics/sections/sections_WebIDL.html deleted file mode 100644 index f57f9bf20f9979..00000000000000 --- a/html/semantics/sections/sections_WebIDL.html +++ /dev/null @@ -1,99 +0,0 @@ - - - - - WebIDL Tests: HTML Sections - - - - - - - - - - -

idlharness test

-

This test validates the WebIDL contained within the HTML5 CR "sections" section.

- -
- -

Test This

-

Test This

-

Test This

-

Test This

-
Test This
-
Test This
- -
- - - -
-
-    interface HTMLBodyElement : HTMLElement {
-           attribute EventHandler onafterprint;
-           attribute EventHandler onbeforeprint;
-           attribute EventHandler onbeforeunload;
-           attribute EventHandler onblur;
-           attribute OnErrorEventHandler onerror;
-           attribute EventHandler onfocus;
-           attribute EventHandler onhashchange;
-           attribute EventHandler onload;
-           attribute EventHandler onmessage;
-           attribute EventHandler onoffline;
-           attribute EventHandler ononline;
-           attribute EventHandler onpopstate;
-           attribute EventHandler onpagehide;
-           attribute EventHandler onpageshow;
-           attribute EventHandler onresize;
-           attribute EventHandler onscroll;
-           attribute EventHandler onstorage;
-           attribute EventHandler onunload;
-    };
-
-    interface HTMLHeadingElement : HTMLElement {};
-
-
- - - -
- - -