diff options
author | Luke Wilde <lukew@serenityos.org> | 2023-03-01 01:45:18 +0000 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2023-04-06 11:36:56 +0200 |
commit | 32e27bc7faacc8c28ff6d1cf4d8b4fb99c53b103 (patch) | |
tree | b38106e65ba8f311098f7ddae4ab70c119f708ad /Userland/Libraries/LibWeb/HTML/HTMLTableCellElement.idl | |
parent | 034aaf3f51e4779f03eaa5becb016e04a4ff9f4d (diff) | |
download | serenity-32e27bc7faacc8c28ff6d1cf4d8b4fb99c53b103.zip |
LibWeb: Add a bunch of missing CEReactions
This is almost guaranteed not to be all CEReactions we need to add, but
this puts us in a much better situation.
Diffstat (limited to 'Userland/Libraries/LibWeb/HTML/HTMLTableCellElement.idl')
-rw-r--r-- | Userland/Libraries/LibWeb/HTML/HTMLTableCellElement.idl | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/Userland/Libraries/LibWeb/HTML/HTMLTableCellElement.idl b/Userland/Libraries/LibWeb/HTML/HTMLTableCellElement.idl index 32c1bc8e0c..d9fddd3bbb 100644 --- a/Userland/Libraries/LibWeb/HTML/HTMLTableCellElement.idl +++ b/Userland/Libraries/LibWeb/HTML/HTMLTableCellElement.idl @@ -6,21 +6,21 @@ interface HTMLTableCellElement : HTMLElement { [HTMLConstructor] constructor(); - attribute unsigned long colSpan; - attribute unsigned long rowSpan; - [Reflect] attribute DOMString headers; - [Reflect] attribute DOMString abbr; + [CEReactions] attribute unsigned long colSpan; + [CEReactions] attribute unsigned long rowSpan; + [CEReactions, Reflect] attribute DOMString headers; + [CEReactions, Reflect] attribute DOMString abbr; - [Reflect] attribute DOMString align; - [Reflect] attribute DOMString axis; - [Reflect] attribute DOMString height; - [Reflect] attribute DOMString width; + [CEReactions, Reflect] attribute DOMString align; + [CEReactions, Reflect] attribute DOMString axis; + [CEReactions, Reflect] attribute DOMString height; + [CEReactions, Reflect] attribute DOMString width; - [Reflect=char] attribute DOMString ch; - [Reflect=charoff] attribute DOMString chOff; - [Reflect=nowrap] attribute boolean noWrap; - [Reflect=valign] attribute DOMString vAlign; + [CEReactions, Reflect=char] attribute DOMString ch; + [CEReactions, Reflect=charoff] attribute DOMString chOff; + [CEReactions, Reflect=nowrap] attribute boolean noWrap; + [CEReactions, Reflect=valign] attribute DOMString vAlign; - [LegacyNullToEmptyString, Reflect=bgcolor] attribute DOMString bgColor; + [CEReactions, LegacyNullToEmptyString, Reflect=bgcolor] attribute DOMString bgColor; }; |