| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <script type="text/javascript" src="../../http/tests/inspector-protocol/inspecto
r-protocol-test.js"></script> | 3 <script type="text/javascript" src="../../http/tests/inspector-protocol/inspecto
r-protocol-test.js"></script> |
| 4 <script> | 4 <script> |
| 5 | 5 |
| 6 function test() | 6 function test() |
| 7 { | 7 { |
| 8 var nodeInfo = {}; | 8 var nodeInfo = {}; |
| 9 InspectorTest.eventHandler["DOM.setChildNodes"] = setChildNodes; | 9 InspectorTest.eventHandler["DOM.setChildNodes"] = setChildNodes; |
| 10 InspectorTest.eventHandler["DOM.inspectNodeRequested"] = inspectNodeRequeste
d; | 10 InspectorTest.eventHandler["Overlay.inspectNodeRequested"] = inspectNodeRequ
ested; |
| 11 InspectorTest.sendCommand("DOM.enable", {}); | 11 InspectorTest.sendCommand("DOM.enable", {}); |
| 12 InspectorTest.sendCommand("DOM.setInspectMode", { "mode": "searchForNode", h
ighlightConfig: {} }, onSetModeEnabled); | 12 InspectorTest.sendCommand("Overlay.enable", {}); |
| 13 InspectorTest.sendCommand("Overlay.setInspectMode", { "mode": "searchForNode
", highlightConfig: {} }, onSetModeEnabled); |
| 13 | 14 |
| 14 function onSetModeEnabled(message) | 15 function onSetModeEnabled(message) |
| 15 { | 16 { |
| 16 if (message.error) { | 17 if (message.error) { |
| 17 InspectorTest.log(message.error.message); | 18 InspectorTest.log(message.error.message); |
| 18 InspectorTest.completeTest(); | 19 InspectorTest.completeTest(); |
| 19 return; | 20 return; |
| 20 } | 21 } |
| 21 | 22 |
| 22 InspectorTest.sendCommand("Input.dispatchMouseEvent", { "type": "mouseMo
ved", "button": "left", "clickCount": 1, "x": 150, "y": 150 }); | 23 InspectorTest.sendCommand("Input.dispatchMouseEvent", { "type": "mouseMo
ved", "button": "left", "clickCount": 1, "x": 150, "y": 150 }); |
| (...skipping 21 matching lines...) Expand all Loading... |
| 44 InspectorTest.completeTest(); | 45 InspectorTest.completeTest(); |
| 45 } | 46 } |
| 46 } | 47 } |
| 47 | 48 |
| 48 </script> | 49 </script> |
| 49 </head> | 50 </head> |
| 50 <body onload="runTest()"> | 51 <body onload="runTest()"> |
| 51 <div style="position:absolute;top:100;left:100;width:100;height:100;background:b
lack"></div> | 52 <div style="position:absolute;top:100;left:100;width:100;height:100;background:b
lack"></div> |
| 52 </body> | 53 </body> |
| 53 </html> | 54 </html> |
| OLD | NEW |