OLD | NEW |
---|---|
(Empty) | |
1 <html> | |
2 <head> | |
3 <script type="text/javascript" src="../../http/tests/inspector-protocol/inspecto r-protocol-test.js"></script> | |
4 <script> | |
5 | |
6 function dumpInnerHtml() | |
7 { | |
8 frame = document.documentElement.appendChild(document.createElement("iframe" )); | |
9 frame.src = "resources/iframe.html"; | |
10 frame.onload = function() | |
11 { | |
12 var location = frame.contentWindow.location; | |
13 frame.remove(); | |
14 memory = console.__lookupGetter__("memory").call(location); | |
15 console.log(memory.constructor.constructor("return document.body.innerHT ML")()); | |
dgozman
2016/06/03 23:59:07
document.querySelector("#mydiv").textContent
kozy
2016/06/04 00:13:27
Done.
| |
16 } | |
17 } | |
18 | |
19 function test() | |
20 { | |
21 InspectorTest.sendCommandOrDie("Console.enable", {}); | |
22 InspectorTest.eventHandler["Console.messageAdded"] = dumpMessageAndCompleTes t; | |
23 InspectorTest.sendCommand("Runtime.evaluate", { "expression": "dumpInnerHtml ()" }); | |
24 | |
25 function dumpMessageAndCompleTest(result) | |
26 { | |
27 InspectorTest.log(result.params.message.text); | |
28 InspectorTest.completeTest(); | |
29 } | |
30 } | |
31 </script> | |
32 </head> | |
33 <body onLoad="runTest();">Tests that console.memory works correct.</body> | |
34 </html> | |
OLD | NEW |