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

@ -5,9 +5,12 @@
// https://html.spec.whatwg.org/multipage/#htmltablecellelement
[HTMLConstructor, Abstract]
interface HTMLTableCellElement : HTMLElement {
attribute unsigned long colSpan;
attribute unsigned long rowSpan;
// attribute DOMString headers;
[CEReactions]
attribute unsigned long colSpan;
[CEReactions]
attribute unsigned long rowSpan;
// [CEReactions]
// attribute DOMString headers;
readonly attribute long cellIndex;
// also has obsolete members
@ -15,15 +18,23 @@ interface HTMLTableCellElement : HTMLElement {
// https://html.spec.whatwg.org/multipage/#HTMLTableCellElement-partial
partial interface HTMLTableCellElement {
// attribute DOMString align;
// attribute DOMString axis;
// attribute DOMString height;
// [CEReactions]
// attribute DOMString align;
// [CEReactions]
// attribute DOMString axis;
// [CEReactions]
// attribute DOMString height;
[CEReactions]
attribute DOMString width;
// attribute DOMString ch;
// attribute DOMString chOff;
// attribute boolean noWrap;
// attribute DOMString vAlign;
// attribute DOMString ch;
// [CEReactions]
// attribute DOMString chOff;
// [CEReactions]
// attribute boolean noWrap;
// [CEReactions]
// attribute DOMString vAlign;
[TreatNullAs=EmptyString] attribute DOMString bgColor;
[CEReactions, TreatNullAs=EmptyString]
attribute DOMString bgColor;
};