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
commit 200e111af0
Notes: sideshowbarker 2024-07-17 08:30:32 +09:00
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;