Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / loader / window-clearing.html
blobfd8c3a3cebe2592e6baeab5601bd8078c806bb96
1 <html>
2 <head>
3 <script>
4 function test() {
5 if (window.testRunner) {
6 testRunner.dumpAsText();
7 testRunner.waitUntilDone();
10 // set up test variables -- they should be cleared
11 var o = window;
12 do {
13 o.x = 1;
14 o = o.__proto__;
15 } while(o);
17 window.location.href="resources/window-clearing2.html";
19 </script>
20 </head>
21 <body onload="test();">
22 <p>FAIL: Could not load resources/window-clearing2.html</p>
23 <hr>
24 </body>
25 </html>