1
Fork 0
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:
Sam Atkins 2022-07-27 20:42:20 +01:00 committed by Linus Groh
parent b456adcb59
commit 200e111af0
3 changed files with 17 additions and 8 deletions

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