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/HTMLMapElement.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/HTMLMapElement.idl')
-rw-r--r-- | Userland/Libraries/LibWeb/HTML/HTMLMapElement.idl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/HTML/HTMLMapElement.idl b/Userland/Libraries/LibWeb/HTML/HTMLMapElement.idl index 516c58c225..79da6e07ee 100644 --- a/Userland/Libraries/LibWeb/HTML/HTMLMapElement.idl +++ b/Userland/Libraries/LibWeb/HTML/HTMLMapElement.idl @@ -6,6 +6,6 @@ interface HTMLMapElement : HTMLElement { [HTMLConstructor] constructor(); - [Reflect] attribute DOMString name; + [CEReactions, Reflect] attribute DOMString name; }; |