| if (window.layoutTestController) { |
| layoutTestController.dumpAsText(); |
| layoutTestController.waitUntilDone(); |
| return GCController.collect(); |
| for (var i = 0; i < 10000; i++) |
| var s = new String("abc"); |
| style = document.createElement('style'); |
| style.textContent = '@-webkit-keyframes anim { from { color: green } }'; |
| document.head.appendChild(style); |
| rule = document.styleSheets[0].cssRules[0].findRule('from'); |
| document.head.removeChild(style); |
| obj = rule.style.parentRule; |
| if (window.layoutTestController) |
| layoutTestController.notifyDone() |
| <body onload="load()">PASS</body> |