Title: [142127] trunk/Source/WebCore
Revision
142127
Author
[email protected]
Date
2013-02-07 08:25:43 -0800 (Thu, 07 Feb 2013)

Log Message

Web Inspector: break details are only rendered upon first debugger pause.
https://bugs.webkit.org/show_bug.cgi?id=109193

Reviewed by Vsevolod Vlasov.

* inspector/front-end/CallStackSidebarPane.js:
(WebInspector.CallStackSidebarPane.prototype.update):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (142126 => 142127)


--- trunk/Source/WebCore/ChangeLog	2013-02-07 16:22:49 UTC (rev 142126)
+++ trunk/Source/WebCore/ChangeLog	2013-02-07 16:25:43 UTC (rev 142127)
@@ -1,3 +1,13 @@
+2013-02-07  Pavel Feldman  <[email protected]>
+
+        Web Inspector: break details are only rendered upon first debugger pause.
+        https://bugs.webkit.org/show_bug.cgi?id=109193
+
+        Reviewed by Vsevolod Vlasov.
+
+        * inspector/front-end/CallStackSidebarPane.js:
+        (WebInspector.CallStackSidebarPane.prototype.update):
+
 2013-02-07  Gavin Peters  <[email protected]>
 
         Unreviewed, rolling out r142118.

Modified: trunk/Source/WebCore/inspector/front-end/CallStackSidebarPane.js (142126 => 142127)


--- trunk/Source/WebCore/inspector/front-end/CallStackSidebarPane.js	2013-02-07 16:22:49 UTC (rev 142126)
+++ trunk/Source/WebCore/inspector/front-end/CallStackSidebarPane.js	2013-02-07 16:25:43 UTC (rev 142127)
@@ -40,6 +40,7 @@
     update: function(callFrames)
     {
         this.bodyElement.removeChildren();
+        delete this._statusMessageElement;
         this.placards = [];
 
         if (!callFrames) {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to