aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/webidls/HTMLTableRowElement.webidl
diff options
context:
space:
mode:
Diffstat (limited to 'components/script/dom/webidls/HTMLTableRowElement.webidl')
-rw-r--r--components/script/dom/webidls/HTMLTableRowElement.webidl17
1 files changed, 11 insertions, 6 deletions
diff --git a/components/script/dom/webidls/HTMLTableRowElement.webidl b/components/script/dom/webidls/HTMLTableRowElement.webidl
index ce26a8c24d5..8257f42c32d 100644
--- a/components/script/dom/webidls/HTMLTableRowElement.webidl
+++ b/components/script/dom/webidls/HTMLTableRowElement.webidl
@@ -10,7 +10,7 @@ interface HTMLTableRowElement : HTMLElement {
readonly attribute HTMLCollection cells;
[Throws]
HTMLElement insertCell(optional long index = -1);
- [Throws]
+ [CEReactions, Throws]
void deleteCell(long index);
// also has obsolete members
@@ -18,10 +18,15 @@ interface HTMLTableRowElement : HTMLElement {
// https://html.spec.whatwg.org/multipage/#HTMLTableRowElement-partial
partial interface HTMLTableRowElement {
- // 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;
- [TreatNullAs=EmptyString] attribute DOMString bgColor;
+ [CEReactions, TreatNullAs=EmptyString]
+ attribute DOMString bgColor;
};