Skip to content

Commit a5a9794

Browse files
committed
temporary: 'both' re-added as part of CSS21, pending clarification from the CSSWG on http://www.w3.org/TR/2015/WD-css-page-floats-3-20150915/#propdef-clear
1 parent 974c182 commit a5a9794

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@ public class CssClear extends org.w3c.css.properties.css.CssClear {
2020
public static final CssIdent[] allowed_values;
2121

2222
static {
23-
String[] _allowed_values = {"inline-start", "inline-end", "block-start",
23+
String[] _allowed_values = {"both" /* This one is for CSS21 backward compat.
24+
discussion started in CSS WG */
25+
, "inline-start", "inline-end", "block-start",
2426
"block-end", "left", "right", "top", "bottom", "none"};
2527
int i = 0;
2628
allowed_values = new CssIdent[_allowed_values.length];

0 commit comments

Comments
 (0)