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

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