mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-01 13:49:16 +00:00
LibWeb: Add the HTMLOrSVGElement IDL interface mixin
This commit is contained in:
parent
46fa18657c
commit
1577bac6a5
Notes:
sideshowbarker
2024-07-17 16:26:33 +09:00
Author: https://github.com/IdanHo
Commit: 1577bac6a5
Pull-request: https://github.com/SerenityOS/serenity/pull/13369
Reviewed-by: https://github.com/alimpfard ✅
2 changed files with 9 additions and 5 deletions
|
@ -22,9 +22,6 @@ interface HTMLElement : Element {
|
|||
readonly attribute long offsetWidth;
|
||||
readonly attribute long offsetHeight;
|
||||
|
||||
// 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;
|
||||
|
@ -97,3 +94,9 @@ interface HTMLElement : Element {
|
|||
attribute EventHandler onwheel;
|
||||
|
||||
};
|
||||
|
||||
HTMLElement includes HTMLOrSVGElement;
|
||||
|
||||
interface mixin HTMLOrSVGElement {
|
||||
[SameObject] readonly attribute DOMStringMap dataset;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue