blob: ea228c9aa896999d9a9cadc45ff73a34ffb6251e (
plain)
1
2
3
4
5
6
7
8
9
|
interface ShadowRoot : DocumentFragment {
readonly attribute DOMString mode;
readonly attribute Element host;
// FIXME: This should come from a InnerHTML mixin.
[LegacyNullToEmptyString] attribute DOMString innerHTML;
};
|