mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 20:47:45 +00:00
LibWeb: Extract the InnerHTML IDL mixin
This commit is contained in:
parent
b456adcb59
commit
200e111af0
3 changed files with 17 additions and 8 deletions
7
Userland/Libraries/LibWeb/DOM/InnerHTML.idl
Normal file
7
Userland/Libraries/LibWeb/DOM/InnerHTML.idl
Normal file
|
@ -0,0 +1,7 @@
|
|||
// https://w3c.github.io/DOM-Parsing/#the-innerhtml-mixin
|
||||
interface mixin InnerHTML {
|
||||
[LegacyNullToEmptyString, CEReactions] attribute DOMString innerHTML;
|
||||
};
|
||||
|
||||
Element includes InnerHTML;
|
||||
ShadowRoot includes InnerHTML;
|
Loading…
Add table
Add a link
Reference in a new issue