summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/DOM/ShadowRoot.idl
blob: 769bf4b3ac2984fec68d1052c6018a6125d5f4ec (plain)
1
2
3
4
5
6
7
8
9
10
11
#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;

};