[SCM] WebKit Debian packaging branch, webkit-1.2, updated. upstream/1.1.90-6072-g9a69373

jberlin at webkit.org jberlin at webkit.org
Wed Apr 7 23:53:38 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit cb667c1bc1ac86da2f41f643c5ab56f4715c0112
Author: jberlin at webkit.org <jberlin at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sun Nov 22 03:04:33 2009 +0000

    Adds a tooltip containing the full url of the resource to each element
    in the Resources panel so that it is possible to quickly see the query
    parameters.
    https://bugs.webkit.org/show_bug.cgi?id=19103
    
    Reviewed by Timothy Hatcher.
    
    * inspector/front-end/ResourcesPanel.js:
    (WebInspector.ResourceSidebarTreeElement.prototype.refresh):
    Set the tooltip to be the resource's url.
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@51290 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 2602915..dc8ce38 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,16 @@
+2009-11-21  Jessie Berlin  <jberlin at webkit.org>
+
+        Reviewed by Timothy Hatcher.
+
+        Adds a tooltip containing the full url of the resource to each element
+        in the Resources panel so that it is possible to quickly see the query
+        parameters.
+        https://bugs.webkit.org/show_bug.cgi?id=19103
+
+        * inspector/front-end/ResourcesPanel.js:
+        (WebInspector.ResourceSidebarTreeElement.prototype.refresh):
+        Set the tooltip to be the resource's url.
+
 2009-11-21  Simon Fraser  <simon.fraser at apple.com>
 
         Reviewed by Dan Bernstein.
diff --git a/WebCore/inspector/front-end/ResourcesPanel.js b/WebCore/inspector/front-end/ResourcesPanel.js
index 61a6d62..3104d13 100644
--- a/WebCore/inspector/front-end/ResourcesPanel.js
+++ b/WebCore/inspector/front-end/ResourcesPanel.js
@@ -1043,6 +1043,8 @@ WebInspector.ResourceSidebarTreeElement.prototype = {
 
             this.createIconElement();
         }
+
+        this.tooltip = this.resource.url;
     },
 
     resetBubble: function()

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list