diff options
Diffstat (limited to 'Userland/Libraries/LibWeb/HTML/HTMLElement.idl')
-rw-r--r-- | Userland/Libraries/LibWeb/HTML/HTMLElement.idl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/HTML/HTMLElement.idl b/Userland/Libraries/LibWeb/HTML/HTMLElement.idl index 5131df71c3..d9db6724b1 100644 --- a/Userland/Libraries/LibWeb/HTML/HTMLElement.idl +++ b/Userland/Libraries/LibWeb/HTML/HTMLElement.idl @@ -12,6 +12,9 @@ interface HTMLElement : Element { readonly attribute long offsetTop; readonly attribute long offsetLeft; + // FIXME: This should come from a HTMLOrSVGElement mixin + [SameObject] readonly attribute DOMStringMap dataset; + // FIXME: These should all come from a GlobalEventHandlers mixin attribute EventHandler onabort; attribute EventHandler onauxclick; |