Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / ManualTests / test-iframes-loading-the-same-resource.html
blob462db02d0aaa5a30642d6b237fe7769d5867138b
1 <html>
2 <head>
3 <script>
4 setTimeout('document.getElementById("frame2").src = "resources/test-frame.html";', 100);
5 loadCount = 0
6 function frame2Loaded() {
7 if (loadCount < 40) {
8 setTimeout('document.getElementById("frame2").src = "resources/test-frame.html?'+loadCount+'";', 100);
9 loadCount++;
12 </script>
13 </head>
14 <body>
15 To perform this test attempt to drag one of the apple images in the left frame while the right frame is doing loads. This test is not entirely deterministic so it should be attempted a number of times. <br />
16 <iframe id="frame1" src="resources/test-frame.html"></iframe>
17 <iframe id="frame2" onload="frame2Loaded();"></iframe>
18 </body>
19 </html>