Upstream version 5.34.104.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / http / tests / htmlimports / import-onload.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script src="/js-test-resources/js-test.js"></script>
5 <script>
6 window.jsTestIsAsync = true;
7 testRunner.waitUntilDone();
8
9 var givenLoadEventTargets = [];
10 function handleLoad(event)
11 {
12     givenLoadEventTargets.push(event.target.id);
13     if (givenLoadEventTargets.length == 4) {
14         shouldBe("['bye', 'hello1', 'hello2', 'hello3']", "givenLoadEventTargets.sort()");
15         finishJSTest();
16     }
17 }
18 </script>
19 <link id="hello1" rel="import" href="resources/hello.html" onload="handleLoad(event)">
20 <link id="hello2" rel="import" href="resources/hello.html" onload="handleLoad(event)">
21 </head>
22 <body>
23 <script>
24 var linkToInsert = document.createElement("link");
25 linkToInsert.id = "bye";
26 linkToInsert.setAttribute("rel", "import");
27 linkToInsert.setAttribute("href", "resources/bye.html");
28 linkToInsert.onload = handleLoad;
29 document.head.appendChild(linkToInsert);
30 </script>
31 <link id="hello3" rel="import" href="resources/hello.html" onload="handleLoad(event)">
32 </body>
33 </html>