Remove the HTMLTable{Header,Data}CellElement interfaces

Fixes #17222.
This commit is contained in:
Simon Pieters 2018-10-02 19:13:53 +02:00
parent 57053e03bb
commit 9b74f0af24
16 changed files with 42 additions and 149 deletions

View file

@ -26638,7 +26638,7 @@
"testharness"
],
"mozilla/collections.html": [
"4011ee6bf322eaacafafd98238c4261084397fde",
"8e06ffcc0933719b4b79ea6656d6635cc121d900",
"testharness"
],
"mozilla/createEvent-storageevent.html": [
@ -27038,7 +27038,7 @@
"testharness"
],
"mozilla/interfaces.html": [
"4863f4d1036e945cfaae1f112981fac3367b2e49",
"8bbde3b46a8e9d5ead6f9a2bf372d9647ad059be",
"testharness"
],
"mozilla/interfaces.js": [

View file

@ -123,8 +123,8 @@ test(function() {
check_tag("caption", 1, [HTMLTableCaptionElement]);
check_tag("textarea", 1, [HTMLTextAreaElement]);
check_tag("q", 1, [HTMLQuoteElement]);
check_tag("th", 1, [HTMLTableCellElement, HTMLTableHeaderCellElement]);
check_tag("td", 1, [HTMLTableCellElement, HTMLTableDataCellElement]);
check_tag("th", 1, [HTMLTableCellElement]);
check_tag("td", 1, [HTMLTableCellElement]);
check_tag("col", 1, [HTMLTableColElement]);
check_tag("colgroup", 1, [HTMLTableColElement]);
check_tag("input", 2, [HTMLInputElement]);

View file

@ -139,9 +139,7 @@ test_interfaces([
"HTMLTableCaptionElement",
"HTMLTableCellElement",
"HTMLTableColElement",
"HTMLTableDataCellElement",
"HTMLTableElement",
"HTMLTableHeaderCellElement",
"HTMLTableRowElement",
"HTMLTableSectionElement",
"HTMLTemplateElement",