Skip to content

Commit 095c7a1

Browse files
committed
updated text-justify definition see #220
1 parent d721018 commit 095c7a1

1 file changed

Lines changed: 4 additions & 5 deletions

File tree

org/w3c/css/properties/css3/CssTextJustify.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, 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 http://www.w3.org/TR/2012/WD-css3-text-20120814/#text-justify0
16+
* @spec https://www.w3.org/TR/2018/WD-css-text-3-20181212/#text-justify-property
1717
*/
1818
public class CssTextJustify extends org.w3c.css.properties.css.CssTextJustify {
1919

2020
private static CssIdent[] allowed_values;
2121

2222
static {
23-
String id_values[] = {"auto", "none", "inter-word", "inter-ideograph",
24-
"inter-cluster", "distribute", "kashida"};
23+
String id_values[] = {"auto", "none", "inter-word", "inter-character"};
2524
allowed_values = new CssIdent[id_values.length];
2625
int i = 0;
2726
for (String s : id_values) {

0 commit comments

Comments
 (0)