Upstream version 5.34.104.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     InspectorTest.expandElementsTree(callback);
11
12     function callback()
13     {
14         InspectorTest.dumpElementsTree();
15         InspectorTest.completeTest();
16     }
17
18 }
19 </script>
20 </head>
21
22 <body onload="runTest()">
23
24 <p>This test verifies that imported document is rendered within the import link.</p>
25
26 </body>
27 </html>
28