Title: [92366] branches/chromium/835/Source/WebCore/inspector/front-end/DetailedHeapshotView.js
Revision
92366
Author
[email protected]
Date
2011-08-04 04:04:14 -0700 (Thu, 04 Aug 2011)

Log Message

Merge 91829 - Web Inspector: [Chromium] REGRESSION: Uncaught TypeError: Cannot read property 'isTracingToWindowObjects' of undefined
https://bugs.webkit.org/show_bug.cgi?id=65213

Reviewed by Pavel Feldman.

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

[email protected]
BUG=91535
Review URL: http://codereview.chromium.org/7575008

Modified Paths

Diff

Modified: branches/chromium/835/Source/WebCore/inspector/front-end/DetailedHeapshotView.js (92365 => 92366)


--- branches/chromium/835/Source/WebCore/inspector/front-end/DetailedHeapshotView.js	2011-08-04 10:07:10 UTC (rev 92365)
+++ branches/chromium/835/Source/WebCore/inspector/front-end/DetailedHeapshotView.js	2011-08-04 11:04:14 UTC (rev 92366)
@@ -451,7 +451,8 @@
 
     refresh: function()
     {
-        this._resetPaths();
+        if (this.snapshotView)
+            this._resetPaths();
     },
 
     reset: function()
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to