Skip to content

Commit

Permalink
issue #86: filter IE property breaks csso v1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
afelix committed Oct 8, 2012
1 parent c0aa96a commit 0a92ac5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/gonzales.cssp.node.js
Original file line number Diff line number Diff line change
Expand Up @@ -1538,6 +1538,8 @@ function getCSSPAST(_tokens, rule, _needInfo) {
if (l = checkIdent(_i)) _i += l;
else return fail(tokens[_i]);

if (l = checkSC(_i)) _i += l;

if (tokens[_i].type === TokenType.LeftParenthesis) {
tokens[start].progid_end = tokens[_i].right;
_i = tokens[_i].right + 1;
Expand Down
2 changes: 2 additions & 0 deletions src/gonzales.cssp.web.js
Original file line number Diff line number Diff line change
Expand Up @@ -1538,6 +1538,8 @@ function getCSSPAST(_tokens, rule, _needInfo) {
if (l = checkIdent(_i)) _i += l;
else return fail(tokens[_i]);

if (l = checkSC(_i)) _i += l;

if (tokens[_i].type === TokenType.LeftParenthesis) {
tokens[start].progid_end = tokens[_i].right;
_i = tokens[_i].right + 1;
Expand Down
2 changes: 2 additions & 0 deletions web/csso.web.js
Original file line number Diff line number Diff line change
Expand Up @@ -1570,6 +1570,8 @@ function getCSSPAST(_tokens, rule, _needInfo) {
if (l = checkIdent(_i)) _i += l;
else return fail(tokens[_i]);

if (l = checkSC(_i)) _i += l;

if (tokens[_i].type === TokenType.LeftParenthesis) {
tokens[start].progid_end = tokens[_i].right;
_i = tokens[_i].right + 1;
Expand Down

0 comments on commit 0a92ac5

Please sign in to comment.