mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
parent
845f503c34
commit
06aeeeb1f3
25 changed files with 298 additions and 77 deletions
|
@ -8,4 +8,5 @@ interface CSSImportRule : CSSRule {
|
|||
// readonly attribute DOMString href;
|
||||
// [SameObject, PutForwards=mediaText] readonly attribute MediaList media;
|
||||
// [SameObject] readonly attribute CSSStyleSheet styleSheet;
|
||||
readonly attribute DOMString? layerName;
|
||||
};
|
||||
|
|
9
components/script/dom/webidls/CSSLayerBlockRule.webidl
Normal file
9
components/script/dom/webidls/CSSLayerBlockRule.webidl
Normal file
|
@ -0,0 +1,9 @@
|
|||
/* 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 https://mozilla.org/MPL/2.0/. */
|
||||
|
||||
// https://drafts.csswg.org/css-cascade-5/#the-csslayerblockrule-interface
|
||||
[Exposed=Window]
|
||||
interface CSSLayerBlockRule : CSSGroupingRule {
|
||||
readonly attribute DOMString name;
|
||||
};
|
|
@ -0,0 +1,9 @@
|
|||
/* 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 https://mozilla.org/MPL/2.0/. */
|
||||
|
||||
// https://drafts.csswg.org/css-cascade-5/#the-csslayerstatementrule-interface
|
||||
[Exposed=Window]
|
||||
interface CSSLayerStatementRule : CSSRule {
|
||||
readonly attribute /*FrozenArray<ResizeObserverSize>*/any nameList;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue