aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/webidls/HTMLTableSectionElement.webidl
diff options
context:
space:
mode:
Diffstat (limited to 'components/script/dom/webidls/HTMLTableSectionElement.webidl')
-rw-r--r--components/script/dom/webidls/HTMLTableSectionElement.webidl14
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;
};