Skip to content

Commit f6f3601

Browse files
committed
1 parent 8db26be commit f6f3601

1 file changed

Lines changed: 4 additions & 5 deletions

File tree

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

Lines changed: 4 additions & 5 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 and Keio University, Beihang, 2012.
55
// Please first read the full copyright statement in file COPYRIGHT.html
66
package org.w3c.css.properties.css3;
77

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

1515
/**
16-
* @spec https://www.w3.org/TR/2017/WD-css-text-3-20170822/#word-break-property
16+
* @spec https://www.w3.org/TR/2018/WD-css-text-3-20181212/#word-break-property
1717
*/
1818
public class CssWordBreak extends org.w3c.css.properties.css.CssWordBreak {
1919

2020
public static final CssIdent[] allowed_values;
2121

2222
static {
23-
String[] _allowed_values = {"normal", "keep-all", "break-all",
24-
"break-word"};
23+
String[] _allowed_values = {"normal", "keep-all", "break-all"};
2524
allowed_values = new CssIdent[_allowed_values.length];
2625
int i = 0;
2726
for (String s : _allowed_values) {

0 commit comments

Comments
 (0)