Skip to content

Commit

Permalink
Fixes transparent color test to use correct background declaration.
Browse files Browse the repository at this point in the history
Thanks to @alfaproject for spotting it.
  • Loading branch information
jakubpawlowicz committed Nov 10, 2015
1 parent 224cc69 commit 4f64165
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/integration-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -1159,9 +1159,9 @@ vows.describe('integration tests')
'a{background:linear-gradient(0,#000,hsla(120,100%,50%,0))}',
'a{background:linear-gradient(0,#000,hsla(120,100%,50%,0))}'
],
'removes only right transparent colors': [
'a{background-color:linear-gradient(0,#000,hsla(120,100%,50%,0)),rgba(0,0,0,0)}',
'a{background-color:linear-gradient(0,#000,hsla(120,100%,50%,0)),rgba(0,0,0,0)}'
'keeps transparent color in layered background': [
'a{background:linear-gradient(0,#000,hsla(120,100%,50%,0)),rgba(0,0,0,0)}',
'a{background:linear-gradient(0,#000,hsla(120,100%,50%,0)),rgba(0,0,0,0)}'
]
})
)
Expand Down

0 comments on commit 4f64165

Please sign in to comment.