diff options
author | Connor Brewster <connor.brewster@eagles.oc.edu> | 2017-07-10 14:47:03 -0600 |
---|---|---|
committer | Connor Brewster <connor.brewster@eagles.oc.edu> | 2017-07-18 12:22:20 -0600 |
commit | 2460997ee18917bda1cdb68e46b7fd5520c3ade7 (patch) | |
tree | db8d87d4a3971e2326b54a0203e838cf94b296e1 /components/script/dom/webidls/HTMLTableSectionElement.webidl | |
parent | 438191e0b207fd6294a465149a37c63f32ce9161 (diff) | |
download | servo-2460997ee18917bda1cdb68e46b7fd5520c3ade7.tar.gz servo-2460997ee18917bda1cdb68e46b7fd5520c3ade7.zip |
Add CEReactions where needed
Diffstat (limited to 'components/script/dom/webidls/HTMLTableSectionElement.webidl')
-rw-r--r-- | components/script/dom/webidls/HTMLTableSectionElement.webidl | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/components/script/dom/webidls/HTMLTableSectionElement.webidl b/components/script/dom/webidls/HTMLTableSectionElement.webidl index a1bf758c407..16d8ce39a0b 100644 --- a/components/script/dom/webidls/HTMLTableSectionElement.webidl +++ b/components/script/dom/webidls/HTMLTableSectionElement.webidl @@ -8,7 +8,7 @@ interface HTMLTableSectionElement : HTMLElement { readonly attribute HTMLCollection rows; [Throws] HTMLElement insertRow(optional long index = -1); - [Throws] + [CEReactions, Throws] void deleteRow(long index); // also has obsolete members @@ -16,8 +16,12 @@ interface HTMLTableSectionElement : HTMLElement { // https://html.spec.whatwg.org/multipage/#HTMLTableSectionElement-partial partial interface HTMLTableSectionElement { - // attribute DOMString align; - // attribute DOMString ch; - // attribute DOMString chOff; - // attribute DOMString vAlign; + // [CEReactions] + // attribute DOMString align; + // [CEReactions] + // attribute DOMString ch; + // [CEReactions] + // attribute DOMString chOff; + // [CEReactions] + // attribute DOMString vAlign; }; |