Index: Source/core/css/CSSGrammar.y |
diff --git a/Source/core/css/CSSGrammar.y b/Source/core/css/CSSGrammar.y |
index 97d1672e06a11feead3e4e79a15d887a78189d15..ff474c94fc3e34c37e42953af8d2df4ca8343b25 100644 |
--- a/Source/core/css/CSSGrammar.y |
+++ b/Source/core/css/CSSGrammar.y |
@@ -6,6 +6,7 @@ |
* Copyright (C) 2006 Alexey Proskuryakov (ap@nypop.com) |
* Copyright (C) 2008 Eric Seidel <eric@webkit.org> |
* Copyright (C) 2012 Intel Corporation. All rights reserved. |
+ * Copyright (C) 2013 Opera Software ASA. All rights reserved. |
fs
2014/04/17 15:33:48
Missed a spot =)
Krzysztof Olczyk
2014/09/30 15:41:46
Done.
|
* |
* This library is free software; you can redistribute it and/or |
* modify it under the terms of the GNU Lesser General Public |
@@ -1600,6 +1601,7 @@ term: |
| URI maybe_space { $$.id = CSSValueInvalid; $$.string = $1; $$.unit = CSSPrimitiveValue::CSS_URI; } |
| UNICODERANGE maybe_space { $$.id = CSSValueInvalid; $$.string = $1; $$.unit = CSSPrimitiveValue::CSS_UNICODE_RANGE; } |
| HEX maybe_space { $$.id = CSSValueInvalid; $$.string = $1; $$.unit = CSSPrimitiveValue::CSS_PARSER_HEXCOLOR; } |
+ | IDSEL maybe_space { $$.id = CSSValueInvalid; $$.string = $1; $$.unit = CSSPrimitiveValue::CSS_PARSER_IDSEL; } |
| '#' maybe_space { $$.id = CSSValueInvalid; $$.string = CSSParserString(); $$.unit = CSSPrimitiveValue::CSS_PARSER_HEXCOLOR; } /* Handle error case: "color: #;" */ |
/* FIXME: according to the specs a function can have a unary_operator in front. I know no case where this makes sense */ |
| function maybe_space |