Add CEReactions where needed

This commit is contained in:
Connor Brewster 2017-07-10 14:47:03 -06:00
parent 438191e0b2
commit 2460997ee1
100 changed files with 1025 additions and 979 deletions

View file

@ -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;
};