Fix CSS parser for statement break
This commit is contained in:
parent
673410119f
commit
df4c69ecc1
|
|
@ -518,6 +518,9 @@ function read_value(it) {
|
|||
}
|
||||
text.value += c;
|
||||
}
|
||||
if (it.curr() === ';' || it.curr() == '}') {
|
||||
break;
|
||||
}
|
||||
it.next();
|
||||
}
|
||||
if (text.value.length) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue