Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / http / tests / misc / resources / slow-preload-cancel-1.html
blob5b2f066ad7cbda2de9211a5103ee405e9e9cce5d
1 <html>
2 <head>
3 <script>
4 if (window.testRunner) {
5 testRunner.waitUntilDone();
6 testRunner.dumpAsText();
8 </script>
9 <script src="resources/script-slow1.pl"></script> <!-- this cause the preload scanner to kick in -->
10 </head>
11 <body>
12 <img src="resources/image-slow.pl"> <!-- this causes a pending preload to happen -->
13 <script>
14 window.close(); //this caused the crash as the preload would start at this point
15 if (window.testRunner) {
16 testRunner.notifyDone();
18 </script>
19 </body>