[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

podivilov at chromium.org podivilov at chromium.org
Wed Dec 22 13:41:29 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 0fdaa85ecd8e7fb81caa91575694f8e6e55d9411
Author: podivilov at chromium.org <podivilov at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Sep 23 16:37:14 2010 +0000

    2010-09-23  Pavel Podivilov  <podivilov at chromium.org>
    
            Reviewed by Yury Semikhatsky.
    
            Web Inspector: source frame popups shouldn't disappear when hovered
            https://bugs.webkit.org/show_bug.cgi?id=46358
    
            * inspector/front-end/SourceFrame.js:
            (WebInspector.SourceFrame.prototype._mouseMove):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@68151 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 8e81de3..21d40b1 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,13 @@
+2010-09-23  Pavel Podivilov  <podivilov at chromium.org>
+
+        Reviewed by Yury Semikhatsky.
+
+        Web Inspector: source frame popups shouldn't disappear when hovered
+        https://bugs.webkit.org/show_bug.cgi?id=46358
+
+        * inspector/front-end/SourceFrame.js:
+        (WebInspector.SourceFrame.prototype._mouseMove):
+
 2010-09-23  Mario Sanchez Prada  <msanchez at igalia.com>
 
         Reviewed by Chris Fleizach.
diff --git a/WebCore/inspector/front-end/SourceFrame.js b/WebCore/inspector/front-end/SourceFrame.js
index a9033f2..aecd57b 100644
--- a/WebCore/inspector/front-end/SourceFrame.js
+++ b/WebCore/inspector/front-end/SourceFrame.js
@@ -498,7 +498,8 @@ WebInspector.SourceFrame.prototype = {
                 self._hidePopup();
                 delete self._hidePopupTimer;
             }
-            this._hidePopupTimer = setTimeout(doHide, 500);
+            if (!("_hidePopupTimer" in this))
+                this._hidePopupTimer = setTimeout(doHide, 500);
         }
 
         this._hoverElement = event.target;

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list