blob: 7d297f15fd9517169b2963da84b7ef951fa5f1ca [file] [log] [blame]
jhoneycutt@apple.com59248b42014-01-24 02:55:15 +00001<!DOCTYPE html>
2
3<!-- Test passes if it doesn't assert in a debug build. -->
4
5<style>
6 #anchor:after {
7 content: ".";
8 display: block;
9 }
10 span {
11 float: left;
12 }
13 ul {
14 -webkit-animation-name: n;
15 -webkit-animation-duration: .1s;
16 }
17 @-webkit-keyframes n {
18 from { }
19 to { list-style-image: -webkit-repeating-radial-gradient(circle cover, rgb(23,136,16) , rgb(2%,5%,72%) , #373f74); }
20 }
21</style>
22
23<ul id="u">
24 <li>
25 <a id="anchor" href="#"><span id="text">PASSED</span></a>
26 </li>
27</ul>
28
29<script>
30 if (window.testRunner) {
31 window.testRunner.dumpAsText(true);
32 window.testRunner.waitUntilDone();
33
34 document.getElementById("u").addEventListener('webkitAnimationStart', function() {
35 window.testRunner.notifyDone();
36 }, false);
37 }
38</script>