Title: [95554] trunk/Source/WebCore
Revision
95554
Author
pfeld...@chromium.org
Date
2011-09-20 10:47:18 -0700 (Tue, 20 Sep 2011)

Log Message

Web Inspector: Copy Stack Trace lacks newlines on Windows
https://bugs.webkit.org/show_bug.cgi?id=68447

Reviewed by Joseph Pecoraro.

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

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (95553 => 95554)


--- trunk/Source/WebCore/ChangeLog	2011-09-20 17:44:11 UTC (rev 95553)
+++ trunk/Source/WebCore/ChangeLog	2011-09-20 17:47:18 UTC (rev 95554)
@@ -1,5 +1,15 @@
 2011-09-20  Pavel Feldman  <pfeld...@google.com>
 
+        Web Inspector: Copy Stack Trace lacks newlines on Windows
+        https://bugs.webkit.org/show_bug.cgi?id=68447
+
+        Reviewed by Joseph Pecoraro.
+
+        * inspector/front-end/CallStackSidebarPane.js:
+        (WebInspector.CallStackSidebarPane.prototype._copyStackTrace):
+
+2011-09-20  Pavel Feldman  <pfeld...@google.com>
+
         Not reviewed: inspector sanity test fix.
 
         * inspector/front-end/inspector.js:

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


--- trunk/Source/WebCore/inspector/front-end/CallStackSidebarPane.js	2011-09-20 17:44:11 UTC (rev 95553)
+++ trunk/Source/WebCore/inspector/front-end/CallStackSidebarPane.js	2011-09-20 17:47:18 UTC (rev 95554)
@@ -137,7 +137,7 @@
     {
         var text = "";
         for (var i = 0; i < this.placards.length; ++i)
-            text += this.placards[i]._text;
+            text += this.placards[i]._text + "\n";
         InspectorFrontendHost.copyText(text);
     },
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to