chromium/third_party/blink/web_tests/animations/cross-fade-list-style-image-expected.html

<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>