Title: [89357] branches/chromium/782/Source/WebCore/inspector/front-end/DetailedHeapshotView.js
Revision
89357
Author
[email protected]
Date
2011-06-21 08:17:13 -0700 (Tue, 21 Jun 2011)

Log Message

Merge 89344 - 2011-06-21  Mikhail Naganov  <[email protected]>

        Reviewed by Yury Semikhatsky.

        Web Inspector: [Chromium] Fix path finding to window objects.
        https://bugs.webkit.org/show_bug.cgi?id=63051

        * inspector/front-end/DetailedHeapshotView.js:
        (WebInspector.HeapSnapshotRetainingPathsList.prototype._setRootChildrenForFinder):

[email protected]
Review URL: http://codereview.chromium.org/7224001

Modified Paths

Diff

Modified: branches/chromium/782/Source/WebCore/inspector/front-end/DetailedHeapshotView.js (89356 => 89357)


--- branches/chromium/782/Source/WebCore/inspector/front-end/DetailedHeapshotView.js	2011-06-21 15:11:37 UTC (rev 89356)
+++ branches/chromium/782/Source/WebCore/inspector/front-end/DetailedHeapshotView.js	2011-06-21 15:17:13 UTC (rev 89357)
@@ -461,7 +461,7 @@
     {
         if (this.snapshotView.isTracingToWindowObjects)
             this.pathFinder.updateRoots(
-                "function (node) { return node.name === \"DOMWindow\"; }");
+                "function (node) { return node.name.substr(0, 9) === \"DOMWindow\"; }");
         else
             this.pathFinder.updateRoots();
     },
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to