DocumentOrShadowRoot.idl 373 B

12345678
  1. #import <CSS/StyleSheetList.idl>
  2. // https://dom.spec.whatwg.org/#documentorshadowroot
  3. interface mixin DocumentOrShadowRoot {
  4. // https://w3c.github.io/csswg-drafts/cssom/#extensions-to-the-document-or-shadow-root-interface
  5. [SameObject, ImplementedAs=style_sheets_for_bindings] readonly attribute StyleSheetList styleSheets;
  6. attribute any adoptedStyleSheets;
  7. };