Skip to content

Commit b3e508f

Browse files
authored
Need 0x29 (close paren) not 0x2d (hyphen). Fixes #43.
1 parent 091cf16 commit b3e508f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

parse-css.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -518,7 +518,7 @@ function tokenize(str) {
518518

519519
var consumeTheRemnantsOfABadURL = function() {
520520
while(consume()) {
521-
if(code == 0x2d || eof()) {
521+
if(code == 0x29 || eof()) {
522522
return;
523523
} else if(startsWithAValidEscape()) {
524524
consumeEscape();

0 commit comments

Comments
 (0)