mirror of
https://github.com/servo/servo.git
synced 2025-08-05 21:50:18 +01:00
Add CEReactions where needed
This commit is contained in:
parent
438191e0b2
commit
2460997ee1
100 changed files with 1025 additions and 979 deletions
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue