Title: [108988] trunk/Source/WebCore
Revision
108988
Author
[email protected]
Date
2012-02-27 06:43:34 -0800 (Mon, 27 Feb 2012)

Log Message

Unreviewed single line fix for r108983.

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

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (108987 => 108988)


--- trunk/Source/WebCore/ChangeLog	2012-02-27 13:47:26 UTC (rev 108987)
+++ trunk/Source/WebCore/ChangeLog	2012-02-27 14:43:34 UTC (rev 108988)
@@ -1,3 +1,10 @@
+2012-02-27  Ilya Tikhonovsky  <[email protected]>
+
+        Unreviewed single line fix for r108983.
+
+        * inspector/front-end/DetailedHeapshotView.js:
+        (WebInspector.DetailedHeapshotView.prototype.willHide):
+
 2012-02-27  Yury Semikhatsky  <[email protected]>
 
         Web Inspector: repaint counter graphs when timeline splitter moves

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


--- trunk/Source/WebCore/inspector/front-end/DetailedHeapshotView.js	2012-02-27 13:47:26 UTC (rev 108987)
+++ trunk/Source/WebCore/inspector/front-end/DetailedHeapshotView.js	2012-02-27 14:43:34 UTC (rev 108988)
@@ -623,7 +623,7 @@
     {
         this._currentSearchResultIndex = -1;
         this._popoverHelper.hidePopover();
-        if (this.helpPopover.visible)
+        if (this.helpPopover && this.helpPopover.visible)
             this.helpPopover.hide();
     },
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to