Title: [89344] trunk/Source/WebCore
Revision
89344
Author
[email protected]
Date
2011-06-21 02:51:17 -0700 (Tue, 21 Jun 2011)

Log Message

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):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (89343 => 89344)


--- trunk/Source/WebCore/ChangeLog	2011-06-21 08:56:07 UTC (rev 89343)
+++ trunk/Source/WebCore/ChangeLog	2011-06-21 09:51:17 UTC (rev 89344)
@@ -1,3 +1,13 @@
+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):
+
 2011-06-21  Pavel Feldman  <[email protected]>
 
         Reviewed by Yury Semikhatsky.

Modified: trunk/Source/WebCore/inspector/front-end/DetailedHeapshotView.js (89343 => 89344)


--- trunk/Source/WebCore/inspector/front-end/DetailedHeapshotView.js	2011-06-21 08:56:07 UTC (rev 89343)
+++ trunk/Source/WebCore/inspector/front-end/DetailedHeapshotView.js	2011-06-21 09:51:17 UTC (rev 89344)
@@ -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