Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix test with whitespace in property value
  • Loading branch information
Gvozd committed Sep 3, 2016
commit b9ecb758c513f540ddbc404af0a700acaa7b699d
3 changes: 2 additions & 1 deletion lib/parse.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ CSSOM.parse = function parse(token) {
"importRule-begin": true,
"importRule": true,
"atBlock": true,
'documentRule-begin': true
'documentRule-begin': true,
"value-parenthesis": true
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This isn't used anywhere.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this used in test ".gradient{background: -moz-linear-gradient(/);/top, #1E5799 0%, #7db9e8 100%)}"
I think, this is correct for this test

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh, I see.

};

var styleSheet = new CSSOM.CSSStyleSheet();
Expand Down