[svn r58] error in parseSelector: outputting token instead of token.value trunk
authordglazman
Fri, 07 May 2010 07:56:34 -0500
branchtrunk
changeset 54 8a4d719f7edf
parent 53 7e845f86aa04
child 55 c940b51d789a
[svn r58] error in parseSelector: outputting token instead of token.value
cssParser.js
--- a/cssParser.js	Sat Mar 27 11:36:12 2010 -0500
+++ b/cssParser.js	Fri May 07 07:56:34 2010 -0500
@@ -2604,7 +2604,7 @@
           if (token.isIdent() || token.isSymbol("*")) {
             // ok we now have a type element or universal
             // selector
-            s += token;
+            s += token.value;
           } else
             // oops that's an error...
             return null;