Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / http / tests / inspector / elements / html-link-import.html
1 <html>
2 <head>
3 <link rel="import" href="../resources/imported-document.html">
4 <script src="../inspector-test.js"></script>
5 <script src="../elements-test.js"></script>
6 <script>
7
8 function test()
9 {
10     // Warm up highlighter module.
11     runtime.loadModulePromise("source_frame").then(function() {
12         InspectorTest.expandElementsTree(callback);
13     }).done();
14
15     function callback()
16     {
17         InspectorTest.dumpElementsTree();
18         InspectorTest.completeTest();
19     }
20
21 }
22 </script>
23 </head>
24
25 <body onload="runTest()">
26
27 <p>This test verifies that imported document is rendered within the import link.</p>
28
29 </body>
30 </html>
31