4 if (window
.testRunner
) {
5 testRunner
.dumpAsText();
6 testRunner
.waitUntilDone();
11 window
.gc = function()
13 if (window
.GCController
)
14 return GCController
.collect();
15 for (var i
= 0; i
< 10000; i
++)
16 var s
= new String("abc");
22 style
= document
.createElement('style');
23 style
.textContent
= '@-webkit-keyframes anim { from { color: green } }';
24 document
.head
.appendChild(style
);
25 rule
= document
.styleSheets
[0].cssRules
[0].findRule('from');
26 document
.head
.removeChild(style
);
33 obj
= rule
.style
.parentRule
;
34 if (window
.testRunner
)
35 testRunner
.notifyDone()
39 <body onload=
"load()">PASS
</body>