Skip to content
This repository has been archived by the owner on Apr 20, 2023. It is now read-only.

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason Johnston committed Mar 6, 2011
1 parent eafbafa commit 311a01e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/tokenizer-tests.html
Expand Up @@ -122,7 +122,7 @@
] );

runTest( 'linear-gradient(center top, yellow, blue)', [
{ type: PIE.Tokenizer.Type.FUNCTION, value: 'linear-gradient(' },
{ type: PIE.Tokenizer.Type.FUNCTION, value: 'linear-gradient' },
{ type: PIE.Tokenizer.Type.IDENT, value: 'center' },
{ type: PIE.Tokenizer.Type.IDENT, value: 'top' },
{ type: PIE.Tokenizer.Type.OPERATOR, value: ',' },
Expand All @@ -133,7 +133,7 @@
] );

runTest( 'linear-gradient(top, yellow, rgba(0,0,255,0.5))', [
{ type: PIE.Tokenizer.Type.FUNCTION, value: 'linear-gradient(' },
{ type: PIE.Tokenizer.Type.FUNCTION, value: 'linear-gradient' },
{ type: PIE.Tokenizer.Type.IDENT, value: 'top' },
{ type: PIE.Tokenizer.Type.OPERATOR, value: ',' },
{ type: PIE.Tokenizer.Type.COLOR, value: 'yellow' },
Expand Down

0 comments on commit 311a01e

Please sign in to comment.