Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / animations / cross-fade-list-style-image-expected.html
blob2d1ed0fd3c416d60f99ff0d2c8033112da4d6847
1 <html>
2 <head>
3 <style>
4 #box {
5 position: absolute;
6 left: 100px;
7 top: 100px;
8 height: 100px;
9 width: 100px;
10 list-style: square -webkit-cross-fade(url(resources/blue-100.png), url(resources/green-100.png), 50%);
12 #boxShorthand {
13 position: absolute;
14 left: 400px;
15 top: 100px;
16 height: 100px;
17 width: 100px;
18 list-style: square -webkit-cross-fade(url(resources/blue-100.png), url(resources/green-100.png), 50%);
20 #boxStatic {
21 position: absolute;
22 left: 100px;
23 top: 350px;
24 height: 100px;
25 width: 100px;
26 list-style: square -webkit-cross-fade(url(resources/blue-100.png), url(resources/green-100.png), 50%);
28 </style>
29 </head>
30 <body>
31 <ul id="box"><li>one</li><li>two</li></ul>
32 <ul id="boxStatic"><li>one</li><li>two</li></ul>
33 <ul id="boxShorthand"><li>one</li><li>two</li></ul>
34 <div id="result">
35 PASS - "listStyleImage" property for "box" and "boxStatic" elements at 2.5s are close enough to each other<br>
36 PASS - "listStyleImage" property for "boxShorthand" and "boxStatic" elements at 2.5s are close enough to each other
37 </div>
38 </body>
39 </html>