diff options
author | Andrew Kaster <akaster@serenityos.org> | 2022-10-07 16:45:09 -0600 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-10-09 10:14:57 +0200 |
commit | 67ceba2e6a98c280eb685dfa7559beef09a35409 (patch) | |
tree | 78eb5e696ca22b9e5acbdf46f7d20068c7db206d /Userland/Libraries/LibWeb/HTML/HTMLFrameSetElement.idl | |
parent | 0265041d44b313e18d097d30fb8e204fa367c5f9 (diff) | |
download | serenity-67ceba2e6a98c280eb685dfa7559beef09a35409.zip |
LibWeb: Add Exposed attribute and IDL spec links where missing
The intent is to use these to autogenerate prototype declarations for
Window and WorkerGlobalScope classes.
And the spec links are just nice to have :^)
Diffstat (limited to 'Userland/Libraries/LibWeb/HTML/HTMLFrameSetElement.idl')
-rw-r--r-- | Userland/Libraries/LibWeb/HTML/HTMLFrameSetElement.idl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/HTML/HTMLFrameSetElement.idl b/Userland/Libraries/LibWeb/HTML/HTMLFrameSetElement.idl index 650be3c737..d0ca96b1d3 100644 --- a/Userland/Libraries/LibWeb/HTML/HTMLFrameSetElement.idl +++ b/Userland/Libraries/LibWeb/HTML/HTMLFrameSetElement.idl @@ -1,6 +1,8 @@ #import <DOM/EventHandler.idl> #import <HTML/HTMLElement.idl> +// https://html.spec.whatwg.org/multipage/semantics.html#htmlframesetelement +[Exposed=Window] interface HTMLFrameSetElement : HTMLElement { [Reflect] attribute DOMString cols; |