[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.22-985-g3c00f00
eric at webkit.org
eric at webkit.org
Wed Mar 17 17:58:58 UTC 2010
The following commit has been merged in the webkit-1.1 branch:
commit 6a31a070aaea9f9783c82326b49781fecb787209
Author: eric at webkit.org <eric at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Thu Feb 25 06:15:52 2010 +0000
2010-02-24 Anthony Ricaud <rik at webkit.org>
Reviewed by Pavel Feldman.
Web Inspector: Reduce the timer to show the eval popover
https://bugs.webkit.org/show_bug.cgi?id=35344
* inspector/front-end/SourceFrame.js:
(WebInspector.SourceFrame.prototype._mouseMove):
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@55221 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 73b33b2..3f3fbf6 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,13 @@
+2010-02-24 Anthony Ricaud <rik at webkit.org>
+
+ Reviewed by Pavel Feldman.
+
+ Web Inspector: Reduce the timer to show the eval popover
+ https://bugs.webkit.org/show_bug.cgi?id=35344
+
+ * inspector/front-end/SourceFrame.js:
+ (WebInspector.SourceFrame.prototype._mouseMove):
+
2010-02-24 Jay Campan <jcampan at google.com>
Reviewed by David Levin.
diff --git a/WebCore/inspector/front-end/SourceFrame.js b/WebCore/inspector/front-end/SourceFrame.js
index 6a8cda4..1184300 100644
--- a/WebCore/inspector/front-end/SourceFrame.js
+++ b/WebCore/inspector/front-end/SourceFrame.js
@@ -482,7 +482,7 @@ WebInspector.SourceFrame.prototype = {
} else if (!this._hoverElement.hasStyleClass("webkit-javascript-ident"))
return;
- const toolTipDelay = this._popup ? 600 : 1500;
+ const toolTipDelay = this._popup ? 600 : 1000;
this._hoverTimer = setTimeout(this._mouseHover.bind(this, this._hoverElement), toolTipDelay);
},
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list