[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.21-584-g1e41756

yurys at chromium.org yurys at chromium.org
Fri Feb 26 22:24:47 UTC 2010


The following commit has been merged in the webkit-1.1 branch:
commit 35e7618569a6c32155521e487c2a73da6f14e09c
Author: yurys at chromium.org <yurys at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Feb 18 17:32:06 2010 +0000

    2010-02-18  Yury Semikhatsky  <yurys at chromium.org>
    
            Reviewed by Pavel Feldman.
    
            Don't truncate long lines when evaluating expressions on a breakpoint.
    
            https://bugs.webkit.org/show_bug.cgi?id=35102
    
            * src/js/DebuggerAgent.js:
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@54968 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/chromium/ChangeLog b/WebKit/chromium/ChangeLog
index a5482ab..4e8a629 100644
--- a/WebKit/chromium/ChangeLog
+++ b/WebKit/chromium/ChangeLog
@@ -1,3 +1,13 @@
+2010-02-18  Yury Semikhatsky  <yurys at chromium.org>
+
+        Reviewed by Pavel Feldman.
+
+        Don't truncate long lines when evaluating expressions on a breakpoint.
+
+        https://bugs.webkit.org/show_bug.cgi?id=35102
+
+        * src/js/DebuggerAgent.js:
+
 2010-02-18  Jay Campan  <jcampan at google.com>
 
         Reviewed by Adam Barth.
diff --git a/WebKit/chromium/src/js/DebuggerAgent.js b/WebKit/chromium/src/js/DebuggerAgent.js
index 301620a..b98685d 100644
--- a/WebKit/chromium/src/js/DebuggerAgent.js
+++ b/WebKit/chromium/src/js/DebuggerAgent.js
@@ -1364,7 +1364,8 @@ devtools.CallFrame.prototype.evaluate_ = function(expression, callback)
             "frame": this.id,
             "global": false,
             "disable_break": false,
-            "compactFormat": true
+            "compactFormat": true,
+            "maxStringLength": -1
         },
         function(response) {
             var result = {};

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list