aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/webidls/HTMLTableCellElement.webidl
diff options
context:
space:
mode:
authorSimon Pieters <zcorpan@gmail.com>2018-10-02 19:13:53 +0200
committerSimon Pieters <zcorpan@gmail.com>2018-10-02 19:23:02 +0200
commit9b74f0af2451afbbe05915d1f85845296f3577e0 (patch)
tree949de06473480e3e4c7d5215473b8748d7e0b3e0 /components/script/dom/webidls/HTMLTableCellElement.webidl
parent57053e03bbfc65e1d2f283cfa8646038be9f9b06 (diff)
downloadservo-9b74f0af2451afbbe05915d1f85845296f3577e0.tar.gz
servo-9b74f0af2451afbbe05915d1f85845296f3577e0.zip
Remove the HTMLTable{Header,Data}CellElement interfaces
Fixes #17222.
Diffstat (limited to 'components/script/dom/webidls/HTMLTableCellElement.webidl')
-rw-r--r--components/script/dom/webidls/HTMLTableCellElement.webidl7
1 files changed, 6 insertions, 1 deletions
diff --git a/components/script/dom/webidls/HTMLTableCellElement.webidl b/components/script/dom/webidls/HTMLTableCellElement.webidl
index bdba9955fcc..26027d099fe 100644
--- a/components/script/dom/webidls/HTMLTableCellElement.webidl
+++ b/components/script/dom/webidls/HTMLTableCellElement.webidl
@@ -3,7 +3,7 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
// https://html.spec.whatwg.org/multipage/#htmltablecellelement
-[HTMLConstructor, Abstract]
+[HTMLConstructor]
interface HTMLTableCellElement : HTMLElement {
[CEReactions]
attribute unsigned long colSpan;
@@ -13,6 +13,11 @@ interface HTMLTableCellElement : HTMLElement {
// attribute DOMString headers;
readonly attribute long cellIndex;
+ // [CEReactions]
+ // attribute DOMString scope; // only conforming for th elements
+ // [CEReactions]
+ // attribute DOMString abbr; // only conforming for th elements
+
// also has obsolete members
};