[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.19-706-ge5415e9

eric at webkit.org eric at webkit.org
Thu Feb 4 21:33:40 UTC 2010


The following commit has been merged in the webkit-1.1 branch:
commit 80f38e906be61e42d2bd109663e0389769b8e1b0
Author: eric at webkit.org <eric at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sun Jan 31 17:55:39 2010 +0000

    2010-01-31  Pavel Feldman  <pfeldman at chromium.org>
    
            Reviewed by Timothy Hatcher.
    
            Web Inspector: [REGRESSION] Breakpoint source line is not displayed
            in the breakpoint manager.
    
            * inspector/front-end/SourceFrame.js:
            (WebInspector.SourceFrame.prototype._addBreakpointToSource):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@54111 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index f35e261..2de68be 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -2,6 +2,16 @@
 
         Reviewed by Timothy Hatcher.
 
+        Web Inspector: [REGRESSION] Breakpoint source line is not displayed
+        in the breakpoint manager.
+
+        * inspector/front-end/SourceFrame.js:
+        (WebInspector.SourceFrame.prototype._addBreakpointToSource):
+
+2010-01-31  Pavel Feldman  <pfeldman at chromium.org>
+
+        Reviewed by Timothy Hatcher.
+
         Web Inspector: Introduce NativeTextViewer.
 
         This change handles rendering highlighted text, using browser's
diff --git a/WebCore/inspector/front-end/SourceFrame.js b/WebCore/inspector/front-end/SourceFrame.js
index 20f3f07..1e1bd0c 100644
--- a/WebCore/inspector/front-end/SourceFrame.js
+++ b/WebCore/inspector/front-end/SourceFrame.js
@@ -318,6 +318,7 @@ WebInspector.SourceFrame.prototype = {
     _addBreakpointToSource: function(breakpoint)
     {
         this._textModel.setAttribute(breakpoint.line - 1, "breakpoint", breakpoint);
+        breakpoint.sourceText = this._textModel.line(breakpoint.line - 1);
         this._editor.paintLineNumbers();
     },
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list