@@ -3,21 +3,21 @@ var test = require('./test');
33describe ( 'bug 4' , function ( ) {
44 it ( 'set auto for default flex-basis property and flex-shrink in flex shorthand' , function ( done ) {
55 var input = 'div{flex: 1;}' ;
6- var output = 'div{flex: 1 1 auto ;}' ;
6+ var output = 'div{flex: 1 1 0% ;}' ;
77 test ( input , output , { } , done ) ;
88 } ) ;
99 it ( 'set flex-basis === auto when flex-basis is not set and flex-shrink is specified' , function ( done ) {
1010 var input = 'div{flex: 1 1;}' ;
11- var output = 'div{flex: 1 1 auto ;}' ;
11+ var output = 'div{flex: 1 1 0% ;}' ;
1212 test ( input , output , { } , done ) ;
1313 } ) ;
1414 it ( 'set flex-basis === 0% for flex-basis with plain 0' , function ( done ) {
1515 var input = 'div{flex: 1 0 0;}' ;
1616 var output = 'div{flex: 1 0 0%;}' ;
1717 test ( input , output , { } , done ) ;
1818 } ) ;
19- it ( 'set flex-basis === 0% for flex-basis with 0 px ' , function ( done ) {
20- var input = 'div{flex: 1 0 0 px ;}' ;
19+ it ( 'set flex-basis === 0% for flex-basis with 0px ' , function ( done ) {
20+ var input = 'div{flex: 1 0 0px ;}' ;
2121 var output = 'div{flex: 1 0 0%;}' ;
2222 test ( input , output , { } , done ) ;
2323 } ) ;
0 commit comments