DocumentOrShadowRoot.idl 517 B

1234567891011
  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. // https://www.w3.org/TR/web-animations-1/#extensions-to-the-documentorshadowroot-interface-mixin
  8. sequence<Animation> getAnimations();
  9. };