@@ -80,7 +80,7 @@ describe("Cross Browser Functions", function () {
8080
8181 it ( "should prefix a list of complex properties" , function ( done ) {
8282 render ( property ( 'prefix(-webkit, linear-gradient(-45deg, rgb(0,0,0) 25%, transparent 75%, transparent), linear-gradient(-45deg, #000 25%, transparent 75%, transparent))' ) , function ( output , err ) {
83- expect ( output ) . toBe ( property ( '-webkit-linear-gradient(-45deg, #000000 25%, transparent 75%, transparent),-webkit-linear-gradient(-45deg, #000 25%, transparent 75%, transparent)' ) ) ;
83+ expect ( output ) . toBe ( property ( '-webkit-linear-gradient(-45deg, #000 25%, transparent 75%, transparent),-webkit-linear-gradient(-45deg, #000 25%, transparent 75%, transparent)' ) ) ;
8484 done ( ) ;
8585 } ) ;
8686 } ) ;
@@ -126,7 +126,7 @@ describe("Gradient Functions", function () {
126126
127127 it ( "should prefix a list with color stops" , function ( done ) {
128128 render ( property ( 'prefix(-webkit, linear-gradient(-45deg, color-stops(rgb(0,0,0) 25%, transparent 75%, transparent)), linear-gradient(-45deg, color-stops(#000 25%, transparent 75%, transparent)))' ) , function ( output , err ) {
129- expect ( output ) . toBe ( property ( '-webkit-linear-gradient(-45deg, #000000 25%, transparent 75%, transparent),-webkit-linear-gradient(-45deg, #000 25%, transparent 75%, transparent)' ) ) ;
129+ expect ( output ) . toBe ( property ( '-webkit-linear-gradient(-45deg, #000 25%,transparent 75%,transparent),-webkit-linear-gradient(-45deg, #000 25%,transparent 75%,transparent)' ) ) ;
130130 done ( ) ;
131131 } ) ;
132132 } ) ;
0 commit comments