Title: [95126] trunk/LayoutTests
Revision
95126
Author
[email protected]
Date
2011-09-14 14:58:03 -0700 (Wed, 14 Sep 2011)

Log Message

Change mousedown events to keydown events, since eventSender.mouseDown
wasn't firing onmousedown events on Mac.
https://bugs.webkit.org/show_bug.cgi?id=67960

Patch by Jeremy Apthorp <[email protected]> on 2011-09-14
Reviewed by Adam Barth.

* fullscreen/full-screen-remove-ancestor-during-transition.html:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (95125 => 95126)


--- trunk/LayoutTests/ChangeLog	2011-09-14 21:39:43 UTC (rev 95125)
+++ trunk/LayoutTests/ChangeLog	2011-09-14 21:58:03 UTC (rev 95126)
@@ -1,3 +1,13 @@
+2011-09-14  Jeremy Apthorp  <[email protected]>
+
+        Change mousedown events to keydown events, since eventSender.mouseDown
+        wasn't firing onmousedown events on Mac.
+        https://bugs.webkit.org/show_bug.cgi?id=67960
+
+        Reviewed by Adam Barth.
+
+        * fullscreen/full-screen-remove-ancestor-during-transition.html:
+
 2011-09-14  David Hyatt  <[email protected]>
 
         https://bugs.webkit.org/show_bug.cgi?id=68103

Modified: trunk/LayoutTests/fullscreen/full-screen-remove-ancestor-during-transition.html (95125 => 95126)


--- trunk/LayoutTests/fullscreen/full-screen-remove-ancestor-during-transition.html	2011-09-14 21:39:43 UTC (rev 95125)
+++ trunk/LayoutTests/fullscreen/full-screen-remove-ancestor-during-transition.html	2011-09-14 21:58:03 UTC (rev 95126)
@@ -7,9 +7,9 @@
 
 function runWithKeyDown(fn)
 {
-    document.addEventListener('mousedown', function() { fn(); }, false);
+    document.addEventListener('keydown', function() { fn(); }, false);
     if (window.layoutTestController) {
-        eventSender.mouseDown();
+        eventSender.keyDown('a');
     }
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to