File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
org/w3c/css/properties/css3 Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change 18
18
import static org .w3c .css .values .CssOperator .SPACE ;
19
19
20
20
/**
21
- * @spec https://www.w3.org/TR/2018/CR -css-contain-1-20181108 /#propdef-contain
21
+ * @spec https://www.w3.org/TR/2019/REC -css-contain-1-20191121 /#propdef-contain
22
22
*/
23
23
public class CssContain extends org .w3c .css .properties .css .CssContain {
24
24
@@ -33,7 +33,7 @@ public class CssContain extends org.w3c.css.properties.css.CssContain {
33
33
for (String s : _allowed_single_values ) {
34
34
allowed_single_values [i ++] = CssIdent .getIdent (s );
35
35
}
36
- String [] _allowed_multiple_values = {"size" , "layout" , "style" , " paint" };
36
+ String [] _allowed_multiple_values = {"size" , "layout" , "paint" };
37
37
i = 0 ;
38
38
allowed_multiple_values = new CssIdent [_allowed_multiple_values .length ];
39
39
for (String s : _allowed_multiple_values ) {
@@ -70,8 +70,7 @@ public CssContain() {
70
70
* Creates a new CssContain
71
71
*
72
72
* @param expression The expression for this property
73
- * @throws org.w3c.css.util.InvalidParamException
74
- * Expressions are incorrect
73
+ * @throws org.w3c.css.util.InvalidParamException Expressions are incorrect
75
74
*/
76
75
public CssContain (ApplContext ac , CssExpression expression , boolean check )
77
76
throws InvalidParamException {
You can’t perform that action at this time.
0 commit comments