Skip to content

Commit 13485fd

Browse files
committed
1 parent 7f47b32 commit 13485fd

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

org/w3c/css/values/CssIdent.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// $Id$
33
// From Philippe Le Hegaret (Philippe.Le_Hegaret@sophia.inria.fr)
44
//
5-
// (c) COPYRIGHT MIT and INRIA, 1997.
5+
// (c) COPYRIGHT W3C, 1997
66
// Please first read the full copyright statement in file COPYRIGHT.html
77
package org.w3c.css.values;
88

@@ -23,7 +23,8 @@ public class CssIdent extends CssValue implements Comparable<CssIdent> {
2323
static {
2424
cachedValues = new HashMap<String, CssIdent>();
2525
cachedValues.put("none", new CssIdent("none"));
26-
String[] _css_wide_ids = {"inherit", "initial", "unset", "revert"};
26+
String[] _css_wide_ids = {"inherit", "initial", "unset",
27+
"revert", "revert-layer"};
2728

2829
css_wide = new CssIdent[_css_wide_ids.length];
2930
int i = 0;

0 commit comments

Comments
 (0)