diff options
Diffstat (limited to 'components/script/dom/webidls/HTMLTableColElement.webidl')
-rw-r--r-- | components/script/dom/webidls/HTMLTableColElement.webidl | 23 |
1 files changed, 16 insertions, 7 deletions
diff --git a/components/script/dom/webidls/HTMLTableColElement.webidl b/components/script/dom/webidls/HTMLTableColElement.webidl index 69188251443..1d853643827 100644 --- a/components/script/dom/webidls/HTMLTableColElement.webidl +++ b/components/script/dom/webidls/HTMLTableColElement.webidl @@ -1,19 +1,28 @@ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ // https://html.spec.whatwg.org/multipage/#htmltablecolelement +[Exposed=Window] interface HTMLTableColElement : HTMLElement { - // attribute unsigned long span; + [HTMLConstructor] constructor(); + + // [CEReactions] + // attribute unsigned long span; // also has obsolete members }; // https://html.spec.whatwg.org/multipage/#HTMLTableColElement-partial partial interface HTMLTableColElement { - // attribute DOMString align; - // attribute DOMString ch; - // attribute DOMString chOff; - // attribute DOMString vAlign; - // attribute DOMString width; + // [CEReactions] + // attribute DOMString align; + // [CEReactions] + // attribute DOMString ch; + // [CEReactions] + // attribute DOMString chOff; + // [CEReactions] + // attribute DOMString vAlign; + // [CEReactions] + // attribute DOMString width; }; |