RESOLVED FIXED 78496
Web Inspector: [heap snapshot] It could be useful to have access to the selected heap object from the console.
https://bugs.webkit.org/show_bug.cgi?id=78496
Summary Web Inspector: [heap snapshot] It could be useful to have access to the selec...
Ilya Tikhonovsky
Reported 2012-02-13 07:10:41 PST
The scenario: 0) make a heap snapshot. 1) select an object 2) open console 3) use it via $$0 property of DOMWindow
Attachments
Patch (12.13 KB, patch)
2012-02-13 07:26 PST, Ilya Tikhonovsky
no flags
Patch (16.44 KB, patch)
2012-02-15 00:56 PST, Ilya Tikhonovsky
no flags
Patch (21.76 KB, patch)
2012-02-15 12:16 PST, Ilya Tikhonovsky
yurys: review+
Ilya Tikhonovsky
Comment 1 2012-02-13 07:26:31 PST
Yury Semikhatsky
Comment 2 2012-02-13 07:42:46 PST
Comment on attachment 126768 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=126768&action=review > Source/WebCore/bindings/v8/custom/V8InjectedScriptHostCustom.cpp:91 > + ScriptObject object = host->inspectedObject(args[0]->ToInt32()->Value()); You should check for a null object and return a error/undefined here. > Source/WebCore/bindings/v8/custom/V8InjectedScriptHostCustom.cpp:92 > + return object.v8Object(); The object may be from a context different from that where inspectedObjectCallback is called, in that case we should return undefined here to avoid object leaks between isolated contexts. > Source/WebCore/inspector/InjectedScriptHost.cpp:152 > + if (heapObject.hasNoValue()) No need to check this here. > Source/WebCore/inspector/InjectedScriptSource.js:582 > + this.__defineGetter__("$$" + i, bind(commandLineAPIImpl, commandLineAPIImpl._inspectedObject, i)); Let's use existing $* mechanism for addressing recently selected objects.
WebKit Review Bot
Comment 3 2012-02-13 08:27:16 PST
Comment on attachment 126768 [details] Patch Attachment 126768 [details] did not pass chromium-ews (chromium-xvfb): Output: http://queues.webkit.org/results/11506824 New failing tests: inspector/protocol/console-agent.html
Ilya Tikhonovsky
Comment 4 2012-02-15 00:56:56 PST
Philippe Normand
Comment 5 2012-02-15 01:01:28 PST
Early Warning System Bot
Comment 6 2012-02-15 01:16:36 PST
Gyuyoung Kim
Comment 7 2012-02-15 01:21:50 PST
WebKit Review Bot
Comment 8 2012-02-15 02:03:30 PST
Comment on attachment 127128 [details] Patch Attachment 127128 [details] did not pass chromium-ews (chromium-xvfb): Output: http://queues.webkit.org/results/11522655 New failing tests: inspector/protocol/console-agent.html inspector/extensions/extensions-sidebar.html inspector/console/command-line-api.html
Yury Semikhatsky
Comment 9 2012-02-15 04:22:00 PST
Comment on attachment 127128 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=127128&action=review > Source/WebCore/inspector/InjectedScriptSource.js:690 > + console.log(" _inspectedObject: " + num); Remove this. > Source/WebCore/inspector/Inspector.json:532 > + "name": "addInspectedObject", The method name is to generic, it should be clear that the object id is from heap profile. > Source/WebCore/inspector/InspectorConsoleAgent.cpp:286 > + InspectableHeapObject(int heapObjectId) : m_heapObjectId(heapObjectId) { } Should be marked explicit. > Source/WebCore/inspector/InspectorConsoleAgent.cpp:289 > + return ScriptProfiler::objectByHeapObjectId(m_heapObjectId); What if the object is from a different ScriptState? > Source/WebCore/inspector/PageConsoleAgent.cpp:68 > + InspectableNode(Node* node) : m_node(node) { } Missing explicit.
Ilya Tikhonovsky
Comment 10 2012-02-15 12:16:29 PST
Ilya Tikhonovsky
Comment 11 2012-02-15 12:19:03 PST
patch for bots comments were addressed except about ScriptState
Yury Semikhatsky
Comment 12 2012-02-16 05:55:20 PST
Comment on attachment 127212 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=127212&action=review > Source/WebCore/ChangeLog:51 > +2012-02-15 Ilya Tikhonovsky <loislo@chromium.org> Please remove duplicate entry. > Source/WebCore/inspector/InspectorConsoleAgent.cpp:289 > + return ScriptProfiler::objectByHeapObjectId(m_heapObjectId); I think we need to reject objects from a different ScriptState here and when wrapping DOM Nodes. This can be done in a separate patch.
Ilya Tikhonovsky
Comment 13 2012-02-16 06:24:10 PST
Note You need to log in before you can comment on or make changes to this bug.