@@ -1557,40 +1557,32 @@ QUnit.test(
1557
1557
var done = assert . async ( ) ;
1558
1558
var styles = [ {
1559
1559
name : "backgroundAttachment" ,
1560
- value : [ "fixed" ] ,
1561
- expected : [ "scroll" ]
1560
+ value : [ "fixed" ]
1562
1561
} , {
1563
1562
name : "backgroundColor" ,
1564
- value : [ "rgb(255, 0, 0)" , "rgb(255,0,0)" , "#ff0000" ] ,
1565
- expected : [ "transparent" ]
1563
+ value : [ "rgb(255, 0, 0)" , "rgb(255,0,0)" , "#ff0000" ]
1566
1564
} , {
1567
1565
1568
1566
// Firefox returns auto's value
1569
1567
name : "backgroundImage" ,
1570
- value : [ "url('test.png')" , "url(" + baseURL + "test.png)" , "url(\"" + baseURL + "test.png\")" ] ,
1571
- expected : [ "none" , "url(\"https://static.jquery.com/files/rocker/images/logo_jquery_215x53.gif\")" ]
1568
+ value : [ "url('test.png')" , "url(" + baseURL + "test.png)" , "url(\"" + baseURL + "test.png\")" ]
1572
1569
} , {
1573
1570
name : "backgroundPosition" ,
1574
- value : [ "5% 5%" ] ,
1575
- expected : [ "0% 0%" , "-1000px 0px" , "-1000px 0%" ]
1571
+ value : [ "5% 5%" ]
1576
1572
} , {
1577
1573
1578
1574
// Firefox returns no-repeat
1579
1575
name : "backgroundRepeat" ,
1580
- value : [ "repeat-y" ] ,
1581
- expected : [ "repeat" , "no-repeat" ]
1576
+ value : [ "repeat-y" ]
1582
1577
} , {
1583
1578
name : "backgroundClip" ,
1584
- value : [ "padding-box" ] ,
1585
- expected : [ "border-box" ]
1579
+ value : [ "padding-box" ]
1586
1580
} , {
1587
1581
name : "backgroundOrigin" ,
1588
- value : [ "content-box" ] ,
1589
- expected : [ "padding-box" ]
1582
+ value : [ "content-box" ]
1590
1583
} , {
1591
1584
name : "backgroundSize" ,
1592
- value : [ "80px 60px" ] ,
1593
- expected : [ "auto auto" ]
1585
+ value : [ "80px 60px" ]
1594
1586
} ] ;
1595
1587
1596
1588
jQuery . each ( styles , function ( index , style ) {
@@ -1599,8 +1591,6 @@ QUnit.test(
1599
1591
source = $source [ 0 ] ,
1600
1592
$children = $source . children ( ) ;
1601
1593
1602
- style . expected = style . expected . concat ( [ "" , "auto" ] ) ;
1603
-
1604
1594
if ( source . style [ style . name ] === undefined ) {
1605
1595
assert . ok ( true , style . name + ": style isn't supported and therefore not an issue" ) ;
1606
1596
assert . ok ( true ) ;
0 commit comments