diff options
author | Luke <luke.wilde@live.co.uk> | 2020-11-09 08:15:10 +0000 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-11-09 09:51:22 +0100 |
commit | e2e6b03a459ea9f6ca572222083921b73c90163e (patch) | |
tree | b7beba84f45959ed0aec865a8f22076421e1dff6 /Libraries/LibWeb/HTML/HTMLDialogElement.idl | |
parent | e7173e946f09dba55e8e2e2f62471029530fbb1f (diff) | |
download | serenity-e2e6b03a459ea9f6ca572222083921b73c90163e.zip |
LibWeb: Add support for reflected boolean values
Also throw in some missing reflected DOMString values
Diffstat (limited to 'Libraries/LibWeb/HTML/HTMLDialogElement.idl')
-rw-r--r-- | Libraries/LibWeb/HTML/HTMLDialogElement.idl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibWeb/HTML/HTMLDialogElement.idl b/Libraries/LibWeb/HTML/HTMLDialogElement.idl index b63ff85cc6..7ef4e71c66 100644 --- a/Libraries/LibWeb/HTML/HTMLDialogElement.idl +++ b/Libraries/LibWeb/HTML/HTMLDialogElement.idl @@ -1,5 +1,5 @@ interface HTMLDialogElement : HTMLElement { - + [Reflect] attribute boolean open; } |