Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(104)

Side by Side Diff: third_party/WebKit/LayoutTests/inspector-protocol/runtime/runtime-console-memory.html

Issue 2034203002: [DevTools] Improve MainThreadDebugger::memoryInfo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: added a test Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698