| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <style> | 3 <style> |
| 4 #box { | 4 #box { |
| 5 position: absolute; | 5 position: absolute; |
| 6 left: 100px; | 6 left: 100px; |
| 7 top: 100px; | 7 top: 100px; |
| 8 height: 100px; | 8 height: 100px; |
| 9 width: 100px; | 9 width: 100px; |
| 10 list-style: square -webkit-cross-fade(url(resources/blue-100.png), url(r
esources/green-100.png), 50%); | 10 list-style: square -webkit-cross-fade(url(resources/blue-100.png), url(r
esources/green-100.png), 50%); |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 width: 100px; | 25 width: 100px; |
| 26 list-style: square -webkit-cross-fade(url(resources/blue-100.png), url(r
esources/green-100.png), 50%); | 26 list-style: square -webkit-cross-fade(url(resources/blue-100.png), url(r
esources/green-100.png), 50%); |
| 27 } | 27 } |
| 28 </style> | 28 </style> |
| 29 </head> | 29 </head> |
| 30 <body> | 30 <body> |
| 31 <ul id="box"><li>one</li><li>two</li></ul> | 31 <ul id="box"><li>one</li><li>two</li></ul> |
| 32 <ul id="boxStatic"><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> | 33 <ul id="boxShorthand"><li>one</li><li>two</li></ul> |
| 34 <div id="result"> | 34 <div id="result"> |
| 35 PASS - "listStyleImage" property for "box" element at 2.5s saw something close t
o: 0.5<br> | |
| 36 PASS - "listStyleImage" property for "box" and "boxStatic" elements at 2.5s are
close enough to each other<br> | 35 PASS - "listStyleImage" property for "box" and "boxStatic" elements at 2.5s are
close enough to each other<br> |
| 37 PASS - "listStyleImage" property for "boxShorthand" and "boxStatic" elements at
2.5s are close enough to each other | 36 PASS - "listStyleImage" property for "boxShorthand" and "boxStatic" elements at
2.5s are close enough to each other |
| 38 </div> | 37 </div> |
| 39 </body> | 38 </body> |
| 40 </html> | 39 </html> |
| OLD | NEW |