7 -webkit-animation: flash
0.2s infinite;
14 @-webkit-keyframes flash {
24 <div id='child' class='hideMe'
></div>
27 if (window
.testRunner
) {
28 testRunner
.waitUntilDone();
29 testRunner
.dumpAsText();
32 child
.addEventListener('webkitAnimationStart', function(e
) {
34 container
.classList
.add('hideMe');
36 container
.classList
.remove('hideMe');
40 document
.documentElement
.textContent
= 'PASS';
41 if (window
.testRunner
) {
42 testRunner
.notifyDone();
45 child
.classList
.remove('hideMe');