blob: 2d1ed0fd3c416d60f99ff0d2c8033112da4d6847 [file] [log] [blame]
<html>
<head>
<style>
#box {
position: absolute;
left: 100px;
top: 100px;
height: 100px;
width: 100px;
list-style: square -webkit-cross-fade(url(resources/blue-100.png), url(resources/green-100.png), 50%);
}
#boxShorthand {
position: absolute;
left: 400px;
top: 100px;
height: 100px;
width: 100px;
list-style: square -webkit-cross-fade(url(resources/blue-100.png), url(resources/green-100.png), 50%);
}
#boxStatic {
position: absolute;
left: 100px;
top: 350px;
height: 100px;
width: 100px;
list-style: square -webkit-cross-fade(url(resources/blue-100.png), url(resources/green-100.png), 50%);
}
</style>
</head>
<body>
<ul id="box"><li>one</li><li>two</li></ul>
<ul id="boxStatic"><li>one</li><li>two</li></ul>
<ul id="boxShorthand"><li>one</li><li>two</li></ul>
<div id="result">
PASS - "listStyleImage" property for "box" and "boxStatic" elements at 2.5s are close enough to each other<br>
PASS - "listStyleImage" property for "boxShorthand" and "boxStatic" elements at 2.5s are close enough to each other
</div>
</body>
</html>