Skip to content

Commit 73b6b7c

Browse files
committed
1 parent c5961ee commit 73b6b7c

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

org/w3c/css/properties/css3/CssContain.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
import static org.w3c.css.values.CssOperator.SPACE;
1919

2020
/**
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
2222
*/
2323
public class CssContain extends org.w3c.css.properties.css.CssContain {
2424

@@ -33,7 +33,7 @@ public class CssContain extends org.w3c.css.properties.css.CssContain {
3333
for (String s : _allowed_single_values) {
3434
allowed_single_values[i++] = CssIdent.getIdent(s);
3535
}
36-
String[] _allowed_multiple_values = {"size", "layout", "style", "paint"};
36+
String[] _allowed_multiple_values = {"size", "layout", "paint"};
3737
i = 0;
3838
allowed_multiple_values = new CssIdent[_allowed_multiple_values.length];
3939
for (String s : _allowed_multiple_values) {
@@ -70,8 +70,7 @@ public CssContain() {
7070
* Creates a new CssContain
7171
*
7272
* @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
7574
*/
7675
public CssContain(ApplContext ac, CssExpression expression, boolean check)
7776
throws InvalidParamException {

0 commit comments

Comments
 (0)