OLD | NEW |
| (Empty) |
1 <html> | |
2 <head> | |
3 | |
4 <style> | |
5 | |
6 body { | |
7 margin: 0; | |
8 } | |
9 | |
10 iframe { | |
11 position: absolute; | |
12 left: 83px; | |
13 top: 53px; | |
14 width: 200px; | |
15 height: 200px; | |
16 } | |
17 | |
18 </style> | |
19 | |
20 <script src="../../http/tests/inspector/inspector-test.js"></script> | |
21 <script src="../../http/tests/inspector/elements-test.js"></script> | |
22 <script src="../../http/tests/inspector/console-test.js"></script> | |
23 <script> | |
24 | |
25 function onload() | |
26 { | |
27 if (window.eventSender) | |
28 window.eventSender.setPageScaleFactor(2, 0, 0); | |
29 window.scrollTo(1000, 1000); | |
30 runTest(); | |
31 } | |
32 | |
33 function test() | |
34 { | |
35 InspectorTest.dumpInspectorHighlightJSON("div", InspectorTest.completeTest.b
ind(InspectorTest)); | |
36 } | |
37 | |
38 </script> | |
39 </head> | |
40 | |
41 <body onload="onload()"> | |
42 <iframe id="scale-iframe" src="resources/highlight-node-scaled-iframe.html"></if
rame> | |
43 </body> | |
44 </html> | |
OLD | NEW |