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