Upstream version 5.34.98.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / http / tests / inspector / styles / selector-line-sourcemap-header.html
1 <html>
2 <head>
3 <link rel="stylesheet" href="resources/selector-line-sourcemap-header.php" />
4 <script src="../inspector-test.js"></script>
5 <script src="../elements-test.js"></script>
6 <script>
7
8 function test()
9 {
10     WebInspector.showPanel("elements");
11     InspectorTest.selectNodeAndWaitForStyles("inspected", step1);
12
13     function step1()
14     {
15         InspectorTest.dumpSelectedElementStyles(true);
16         InspectorTest.completeTest();
17     }
18 }
19
20 </script>
21 </head>
22
23 <body onload="runTest()">
24 <p>
25 Tests that sourcemap is applied correctly when specified by the respective HTTP header.
26 </p>
27
28 <div id="container">
29     <div id="inspected">Text</div>
30 </div>
31
32 </body>
33 </html>