mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-27 10:07:15 +02:00
12 lines
276 B
Plaintext
12 lines
276 B
Plaintext
#import <DOM/DocumentFragment.idl>
|
|
|
|
interface ShadowRoot : DocumentFragment {
|
|
|
|
readonly attribute DOMString mode;
|
|
readonly attribute Element host;
|
|
|
|
// FIXME: This should come from a InnerHTML mixin.
|
|
[LegacyNullToEmptyString] attribute DOMString innerHTML;
|
|
|
|
};
|