Skip to content

Commit 8b264a8

Browse files
committed
cssom: add the CSSContainerRule interface
1 parent 701094e commit 8b264a8

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
/*
2+
* This software extends interfaces defined by CSS Conditional Rules Module Level 5
3+
* (https://drafts.csswg.org/css-conditional-5/).
4+
* Copyright © 2013 W3C® (MIT, ERCIM, Keio, Beihang).
5+
* https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
6+
*/
7+
/*
8+
* SPDX-License-Identifier: W3C-20150513
9+
*/
10+
11+
package org.w3c.css.om;
12+
13+
/**
14+
* Represents a ‘{@literal @}container’ rule.
15+
*/
16+
public interface CSSContainerRule extends CSSConditionRule {
17+
18+
String getContainerName();
19+
20+
String getContainerQuery();
21+
22+
}

0 commit comments

Comments
 (0)