1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 06:07:34 +00:00

LibWeb: Make the innerHTML setter spec compliant

This adds innerHTML to ShadowRoot in the process.
This commit is contained in:
Luke Wilde 2021-09-13 22:42:57 +01:00 committed by Andreas Kling
parent f62477c093
commit 8e0f3436a2
8 changed files with 109 additions and 9 deletions

View file

@ -3,4 +3,7 @@ interface ShadowRoot : DocumentFragment {
readonly attribute DOMString mode;
readonly attribute Element host;
// FIXME: This should come from a InnerHTML mixin.
[LegacyNullToEmptyString] attribute DOMString innerHTML;
};