Index: third_party/WebKit/LayoutTests/media/media-controls-tap-show-controls-without-activating.html |
diff --git a/third_party/WebKit/LayoutTests/media/media-controls-tap-show-controls-without-activating.html b/third_party/WebKit/LayoutTests/media/media-controls-tap-show-controls-without-activating.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..16a0c6fade695382016185bc2ec1ef96ae85f09a |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/media/media-controls-tap-show-controls-without-activating.html |
@@ -0,0 +1,35 @@ |
+<!DOCTYPE html> |
+<title>Test that when tapping on the controls to show them it does not activate the button below.</title> |
+<script src="../resources/testharness.js"></script> |
+<script src="../resources/testharnessreport.js"></script> |
+<script src="media-file.js"></script> |
+<script src="media-controls.js"></script> |
+<video controls loop></video> |
+<script> |
+async_test(function(t) { |
+ var video = document.querySelector("video"); |
+ video.src = findMediaFile("video", "content/test"); |
+ video.play(); |
+ |
+ video.onplaying = t.step_func(function() { |
+ runAfterHideMediaControlsTimerFired(t.step_func_done(function() { |
+ assert_false(isControlsPanelVisible(video)); |
+ |
+ var coords = mediaControlsButtonCoordinates(video, "play-button"); |
+ |
+ eventSender.gestureTapDown(coords[0], coords[1]); |
+ assert_false(video.paused); |
+ assert_false(isControlsPanelVisible(video)); |
+ |
+ eventSender.gestureShowPress(coords[0], coords[1]); |
+ assert_false(video.paused); |
+ assert_false(isControlsPanelVisible(video)); |
+ |
+ eventSender.gestureTap(coords[0], coords[1]); |
+ // Tap shows the controls and do not pause. |
+ assert_false(video.paused); |
+ assert_true(isControlsPanelVisible(video)); |
+ }), video); |
+ }); |
+}); |
+</script> |