Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / inspector / elements / highlight / highlight-node.html
blob445e59ab367c4183ab46adc951dc052a4f3f4bfa
1 <html>
2 <head>
4 <style>
6 body {
7 margin: 0;
9 #container {
10 width: 400px;
11 height: 400px;
12 background-color: grey;
14 #inspectedElement {
15 margin: 5px;
16 border: solid 10px aqua;
17 padding: 15px;
18 width: 200px;
19 height: 200px;
20 background-color: blue;
21 float: left;
23 #description {
24 clear: both;
27 </style>
29 <script src="../../../http/tests/inspector/inspector-test.js"></script>
30 <script src="../../../http/tests/inspector/elements-test.js"></script>
31 <script>
33 function test()
35 InspectorTest.dumpInspectorHighlightJSON("inspectedElement", InspectorTest.completeTest.bind(InspectorTest));
38 </script>
39 </head>
41 <body onload="runTest()">
43 <div id="inspectedElement"></div>
44 <p id="description">This test verifies the position and size of the highlight rectangles overlayed on an inspected div.</p>
46 </body>
47 </html>