Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(111)

Side by Side Diff: LayoutTests/fast/html/imports/import-onload.html

Issue 22573005: [HTML Imports] Implement "load" and "error" events. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: For landing Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script src="../../js/resources/js-test-pre.js"></script>
5 <script>
6 testRunner.waitUntilDone();
7
8 var givenLoadEventTargets = [];
9 function handleLoad(event)
10 {
11 givenLoadEventTargets.push(event.target.id);
12 if (givenLoadEventTargets.length == 4) {
13 shouldBe("['bye', 'hello1', 'hello2', 'hello3']", "givenLoadEventTargets .sort()");
14 testRunner.notifyDone();
15 }
16 }
17 </script>
18 <link id="hello1" rel="import" href="resources/hello.html" onload="handleLoad(ev ent)">
19 <link id="hello2" rel="import" href="resources/hello.html" onload="handleLoad(ev ent)">
20 </head>
21 <body>
22 <script>
23 var linkToInsert = document.createElement("link");
24 linkToInsert.id = "bye";
25 linkToInsert.setAttribute("rel", "import");
26 linkToInsert.setAttribute("href", "resources/bye.html");
27 linkToInsert.onload = handleLoad;
28 document.head.appendChild(linkToInsert);
29 </script>
30 <link id="hello3" rel="import" href="resources/hello.html" onload="handleLoad(ev ent)">
31 <script src="../../js/resources/js-test-post.js"></script>
32 </body>
33 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/html/imports/import-onerror-expected.txt ('k') | LayoutTests/fast/html/imports/import-onload-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698