Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(49)

Unified Diff: LayoutTests/media/video-controls-touch-events-captured.html

Issue 406213002: If the media controls are visible they should always grab clicks (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix layout test - was hitting overlay play button. Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/media/video-controls-touch-events-captured.html
diff --git a/LayoutTests/media/video-controls-touch-events-captured.html b/LayoutTests/media/video-controls-touch-events-captured.html
new file mode 100644
index 0000000000000000000000000000000000000000..0cedc422591d24d6542ba99573b21a8ac51344a3
--- /dev/null
+++ b/LayoutTests/media/video-controls-touch-events-captured.html
@@ -0,0 +1,60 @@
+<!DOCTYPE html>
+<html>
+<head>
+
+</head>
+<body>
+ <video controls></video>
+ <p>This tests that touch events on the controls will not be seen by the video element.</p>
+ <script src=media-file.js></script>
+ <script src=video-test.js></script>
+ <script src=media-controls.js></script>
+ <script>
+ waitForEventAndFail("click");
+ waitForEventAndFail("dblclick");
+ waitForEventAndFail("touchstart");
+ waitForEventAndFail("touchend");
+ waitForEventAndFail("touchmove");
+
+ waitForEventAndEnd("loadeddata", function()
+ {
+ if (window.eventSender) {
+ // click the play button
+ var coords = mediaControlsButtonCoordinates(video, "play-button");
+ eventSender.addTouchPoint(coords[0], coords[1]);
+
+ eventSender.touchStart();
+ eventSender.leapForward(100);
+ eventSender.touchEnd();
+ eventSender.cancelTouchPoint(0);
+
+ // Click the current time display, which should not respond to events, but
+ // should still capture them
+ coords = mediaControlsButtonCoordinates(video, "current-time-display");
+ eventSender.addTouchPoint(coords[0], coords[1]);
+
+ eventSender.touchStart();
+ eventSender.leapForward(100);
+ eventSender.touchEnd();
+ eventSender.cancelTouchPoint(0);
+
+
+ // Click the timeline - this tests that multilevel shadow DOM elements work
+ coords = mediaControlsButtonCoordinates(video, "timeline");
+ eventSender.addTouchPoint(coords[0], coords[1]);
+
+ eventSender.touchStart();
+ eventSender.leapForward(100);
+ eventSender.touchEnd();
+
+ // Check that the timeline also captures moves
+ eventSender.updateTouchPoint(0, coords[0]+10, coords[1]+10)
+ eventSender.touchMove();
+ eventSender.cancelTouchPoint(0);
+
+ }
+ });
+ video.src = findMediaFile("video", "content/test");
+ </script>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698