diff options
author | Emilio Cobos Álvarez <emilio@crisal.io> | 2016-12-16 12:13:32 +0100 |
---|---|---|
committer | Emilio Cobos Álvarez <emilio@crisal.io> | 2016-12-16 16:57:20 +0100 |
commit | b86aa41568463ed8454037dbd4247dd939c3f114 (patch) | |
tree | 4ba96d2ae5393d7c75346dfbd5cb360b9dd3e795 /components/script/dom/webidls/CSSImportRule.webidl | |
parent | ca93a2dcec06bbae68b17a2faf11ca53d0691fe5 (diff) | |
download | servo-b86aa41568463ed8454037dbd4247dd939c3f114.tar.gz servo-b86aa41568463ed8454037dbd4247dd939c3f114.zip |
script: Add CSSImportRule WebIDL interface.
Diffstat (limited to 'components/script/dom/webidls/CSSImportRule.webidl')
-rw-r--r-- | components/script/dom/webidls/CSSImportRule.webidl | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/components/script/dom/webidls/CSSImportRule.webidl b/components/script/dom/webidls/CSSImportRule.webidl new file mode 100644 index 00000000000..b8131a7bb87 --- /dev/null +++ b/components/script/dom/webidls/CSSImportRule.webidl @@ -0,0 +1,11 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +// https://drafts.csswg.org/cssom/#cssimportrule +[Exposed=Window] +interface CSSImportRule : CSSRule { + // readonly attribute DOMString href; + // [SameObject, PutForwards=mediaText] readonly attribute MediaList media; + // [SameObject] readonly attribute CSSStyleSheet styleSheet; +}; |