mirror of
https://github.com/RGBCube/serenity
synced 2025-05-28 16:15:10 +00:00
7 lines
223 B
Text
7 lines
223 B
Text
// https://w3c.github.io/DOM-Parsing/#the-innerhtml-mixin
|
|
interface mixin InnerHTML {
|
|
[LegacyNullToEmptyString, CEReactions] attribute DOMString innerHTML;
|
|
};
|
|
|
|
Element includes InnerHTML;
|
|
ShadowRoot includes InnerHTML;
|