File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -145,7 +145,7 @@ function parse(tokens) {
145
145
case ";" : pop ( ) && switchto ( ) ; break ;
146
146
case "}" : pop ( ) && switchto ( ) && reprocess ( ) ; break ;
147
147
case "EOF" : finish ( ) ; return stylesheet ;
148
- default : decl . append ( consumeAPrimitive ( ) ) ;
148
+ default : rule . append ( consumeAPrimitive ( ) ) ;
149
149
}
150
150
break ;
151
151
Original file line number Diff line number Diff line change @@ -513,8 +513,8 @@ DelimToken.prototype.tokenType = "DELIM";
513
513
DelimToken . prototype . toString = function ( ) { return "DELIM(" + this . value + ")" ; }
514
514
515
515
function StringValuedToken ( ) { return this ; }
516
- StringValuedtoken . prototype = new CSSParserToken ;
517
- StringValuedToken . append = function ( val ) {
516
+ StringValuedToken . prototype = new CSSParserToken ;
517
+ StringValuedToken . prototype . append = function ( val ) {
518
518
if ( val instanceof Array ) {
519
519
for ( var i = 0 ; i < val . length ; i ++ ) {
520
520
this . value . push ( val [ i ] ) ;
You can’t perform that action at this time.
0 commit comments