Title: [91829] trunk/Source/WebCore
Revision
91829
Author
[email protected]
Date
2011-07-27 03:01:51 -0700 (Wed, 27 Jul 2011)

Log Message

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

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (91828 => 91829)


--- trunk/Source/WebCore/ChangeLog	2011-07-27 09:49:49 UTC (rev 91828)
+++ trunk/Source/WebCore/ChangeLog	2011-07-27 10:01:51 UTC (rev 91829)
@@ -1,3 +1,13 @@
+2011-07-27  Mikhail Naganov  <[email protected]>
+
+        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):
+
 2011-07-27  Shinya Kawanaka  <[email protected]>
 
         Knob of a disabled or readonly range control should not be draggable.

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


--- trunk/Source/WebCore/inspector/front-end/DetailedHeapshotView.js	2011-07-27 09:49:49 UTC (rev 91828)
+++ trunk/Source/WebCore/inspector/front-end/DetailedHeapshotView.js	2011-07-27 10:01:51 UTC (rev 91829)
@@ -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