Skip to content

Commit 56b46f5

Browse files
committed
1 parent beb08c0 commit 56b46f5

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

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

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
// $Id$
1+
//
22
// Author: Yves Lafon <ylafon@w3.org>
33
//
4-
// (c) COPYRIGHT MIT, ERCIM and Keio University, 2012.
4+
// (c) COPYRIGHT MIT, ERCIM, Keio, Beihang, 2015.
55
// Please first read the full copyright statement in file COPYRIGHT.html
66
package org.w3c.css.properties.css3;
77

@@ -13,14 +13,15 @@
1313
import org.w3c.css.values.CssValue;
1414

1515
/**
16-
* @spec http://www.w3.org/TR/2007/WD-css3-box-20070809/#clear
16+
* @spec http://www.w3.org/TR/2015/WD-css-page-floats-3-20150915/#propdef-clear
1717
*/
1818
public class CssClear extends org.w3c.css.properties.css.CssClear {
1919

2020
public static final CssIdent[] allowed_values;
2121

2222
static {
23-
String[] _allowed_values = {"none", "left", "right", "both"};
23+
String[] _allowed_values = {"inline-start", "inline-end", "block-start",
24+
"block-end", "left", "right", "top", "bottom", "none"};
2425
int i = 0;
2526
allowed_values = new CssIdent[_allowed_values.length];
2627
for (String s : _allowed_values) {

0 commit comments

Comments
 (0)