1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 03:47:35 +00:00

LibWeb: Add support for HTMLOrSVGElement.dataset

This commit is contained in:
Luke Wilde 2021-09-26 15:24:41 +01:00 committed by Andreas Kling
parent 37347cbcb6
commit f6b24a72ee
12 changed files with 259 additions and 1 deletions

View file

@ -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;