Skip to content

Commit 02b4cb1

Browse files
committed
1 parent a257401 commit 02b4cb1

1 file changed

Lines changed: 6 additions & 5 deletions

File tree

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

Lines changed: 6 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,16 @@
1313
import org.w3c.css.values.CssValue;
1414

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

2020
private static CssIdent[] allowed_values;
21-
//
21+
22+
//
2223
static {
2324
String id_values[] = {"auto", "start", "end",
24-
"left", "right", "center", "justify"};
25+
"left", "right", "center", "justify", "match-parent"};
2526
allowed_values = new CssIdent[id_values.length];
2627
int i = 0;
2728
for (String s : id_values) {

0 commit comments

Comments
 (0)