[SCM] WebKit Debian packaging branch, debian/experimental, updated. debian/1.3.8-1-1049-g2e11a8e

yurys at chromium.org yurys at chromium.org
Fri Jan 21 14:34:26 UTC 2011


The following commit has been merged in the debian/experimental branch:
commit 1df5b7ad34264fba8a3249eeceb2924706bb0d15
Author: yurys at chromium.org <yurys at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Dec 22 22:39:08 2010 +0000

    2010-12-22  Yury Semikhatsky  <yurys at chromium.org>
    
            Reviewed by Joseph Pecoraro.
    
            Web Inspector: script name gets parsed as HTML in Call stack panel
            https://bugs.webkit.org/show_bug.cgi?id=51468
    
            * inspector/front-end/Placard.js:
            (WebInspector.Placard.prototype.set subtitle):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@74506 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 8499342..3d3d3a0 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,13 @@
+2010-12-22  Yury Semikhatsky  <yurys at chromium.org>
+
+        Reviewed by Joseph Pecoraro.
+
+        Web Inspector: script name gets parsed as HTML in Call stack panel
+        https://bugs.webkit.org/show_bug.cgi?id=51468
+
+        * inspector/front-end/Placard.js:
+        (WebInspector.Placard.prototype.set subtitle):
+
 2010-12-22  Eric Carlson  <eric.carlson at apple.com>
 
         Reviewed by Darin Adler.
diff --git a/WebCore/inspector/front-end/Placard.js b/WebCore/inspector/front-end/Placard.js
index 69a168e..9a415c4 100644
--- a/WebCore/inspector/front-end/Placard.js
+++ b/WebCore/inspector/front-end/Placard.js
@@ -67,7 +67,7 @@ WebInspector.Placard.prototype = {
         if (this._subtitle === x)
             return;
         this._subtitle = x;
-        this.subtitleElement.innerHTML = x;
+        this.subtitleElement.textContent = x;
     },
 
     get selected()

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list