Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / css3 / images / cross-fade-background-size.html
blob9a9b349c95e44bc44ec2982aafa1bbaceb527d04
1 <html>
2 <head>
3 <title>There should be four bars, equivalent except for the length of the bar.</title>
4 <style>
6 div
8 width: 200px;
9 height: 50px;
12 #compositeTiledNormal
14 background-image: url(resources/stripes-large.png);
15 transform: translateZ(0);
16 background-size: 10px 50px;
19 #compositeTiledCrossfade
21 background-image: -webkit-cross-fade(url(resources/stripes-large.png), url(resources/stripes-small.png), 1%);
22 transform: translateZ(0);
23 background-size: 10px 50px;
27 #normal
29 background-image: url(resources/stripes-large.png);
30 background-size: 10px 50px;
31 background-repeat: no-repeat;
34 #crossfade
36 background-image: -webkit-cross-fade(url(resources/stripes-large.png), url(resources/stripes-small.png), 1%);
37 background-size: 10px 50px;
38 background-repeat: no-repeat;
42 </style>
43 </head>
44 <body>
45 <div id="compositeTiledNormal"></div><br/>
46 <div id="compositeTiledCrossfade"></div>
47 <br/><br/>
48 <div id="normal"></div><br/>
49 <div id="crossfade"></div>
50 </body>
51 </html>