[Webkit-unassigned] [Bug 63853] [GTK] editing/selection/directionality-after-undo-replace.html is failing
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Fri Jul 1 16:28:52 PDT 2011
https://bugs.webkit.org/show_bug.cgi?id=63853
--- Comment #1 from Martin Robinson <mrobinson at webkit.org> 2011-07-01 16:28:52 PST ---
Thanks for filling this bug. The issue here seems to be that there are so many leapForwards that the test is exceeding the double-click timeout on GTK+. This change causes the test to start passing:
--- a/LayoutTests/editing/selection/directionality-after-undo-replace.html
+++ b/LayoutTests/editing/selection/directionality-after-undo-replace.html
@@ -23,12 +23,11 @@ if (window.layoutTestController) {
var test = document.getElementById('target');
eventSender.mouseMoveTo(target.offsetLeft + target.offsetWidth / 2, target.offsetTop + target.offsetHeight / 2);
eventSender.mouseDown();
- eventSender.leapForward(200);
eventSender.mouseUp();
eventSender.leapForward(200);
+
eventSender.mouseDown();
- eventSender.leapForward(200);
eventSender.mouseUp();
document.execCommand('InsertText', false, 'a');
--
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
More information about the webkit-unassigned
mailing list