Title: [90309] trunk/LayoutTests
Revision
90309
Author
[email protected]
Date
2011-07-01 19:34:52 -0700 (Fri, 01 Jul 2011)

Log Message

2011-07-01  Ryosuke Niwa  <[email protected]>

        [GTK] editing/selection/directionality-after-undo-replace.html is failing
        https://bugs.webkit.org/show_bug.cgi?id=63853

        Reviewed by Ojan Vafai.

        Don't do leapForward between mouseDown and mouseUp so that GTK recognizes the double-click.

        * editing/selection/directionality-after-undo-replace.html:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (90308 => 90309)


--- trunk/LayoutTests/ChangeLog	2011-07-02 02:20:16 UTC (rev 90308)
+++ trunk/LayoutTests/ChangeLog	2011-07-02 02:34:52 UTC (rev 90309)
@@ -1,3 +1,14 @@
+2011-07-01  Ryosuke Niwa  <[email protected]>
+
+        [GTK] editing/selection/directionality-after-undo-replace.html is failing
+        https://bugs.webkit.org/show_bug.cgi?id=63853
+
+        Reviewed by Ojan Vafai.
+
+        Don't do leapForward between mouseDown and mouseUp so that GTK recognizes the double-click.
+
+        * editing/selection/directionality-after-undo-replace.html:
+
 2011-07-01  Kent Tamura  <[email protected]>
 
         Reviewed by Tony Chang.

Modified: trunk/LayoutTests/editing/selection/directionality-after-undo-replace.html (90308 => 90309)


--- trunk/LayoutTests/editing/selection/directionality-after-undo-replace.html	2011-07-02 02:20:16 UTC (rev 90308)
+++ trunk/LayoutTests/editing/selection/directionality-after-undo-replace.html	2011-07-02 02:34:52 UTC (rev 90309)
@@ -23,12 +23,11 @@
         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');
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to