We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f47b32 commit 13485fdCopy full SHA for 13485fd
org/w3c/css/values/CssIdent.java
@@ -2,7 +2,7 @@
2
// $Id$
3
// From Philippe Le Hegaret (Philippe.Le_Hegaret@sophia.inria.fr)
4
//
5
-// (c) COPYRIGHT MIT and INRIA, 1997.
+// (c) COPYRIGHT W3C, 1997
6
// Please first read the full copyright statement in file COPYRIGHT.html
7
package org.w3c.css.values;
8
@@ -23,7 +23,8 @@ public class CssIdent extends CssValue implements Comparable<CssIdent> {
23
static {
24
cachedValues = new HashMap<String, CssIdent>();
25
cachedValues.put("none", new CssIdent("none"));
26
- String[] _css_wide_ids = {"inherit", "initial", "unset", "revert"};
+ String[] _css_wide_ids = {"inherit", "initial", "unset",
27
+ "revert", "revert-layer"};
28
29
css_wide = new CssIdent[_css_wide_ids.length];
30
int i = 0;
0 commit comments