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

Unified Diff: LayoutTests/media/activation-behavior.html

Issue 249483002: Disable the activation behavior of media elements (click to play/pause) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 8 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
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/media/activation-behavior-accesskey.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/media/activation-behavior.html
diff --git a/LayoutTests/media/activation-behavior.html b/LayoutTests/media/activation-behavior.html
deleted file mode 100644
index 02b073c0cc7e244722d1629c1dc2327f74fb1f4b..0000000000000000000000000000000000000000
--- a/LayoutTests/media/activation-behavior.html
+++ /dev/null
@@ -1,217 +0,0 @@
-<!doctype html>
-<title>activation behavior</title>
-<script src="../resources/testharness.js"></script>
-<script src="../resources/testharnessreport.js"></script>
-<script src="media-file.js"></script>
-<div id="log"></div>
-<script>
-var uniqueSrcCounter = 0;
-
-function activation_behavior_test(tagName, src)
-{
- // FIXME: hack used to investigate http://crbug.com/355489
- function uniqueSrc()
- {
- return src + '?activation-behavior-' + ++uniqueSrcCounter;
- }
-
- async_test(function(t)
- {
- var e = document.createElement(tagName);
- e.controls = true;
- e.src = uniqueSrc();
- e.preload = 'auto';
- e.oncanplay = t.step_func(function()
- {
- assert_greater_than(e.readyState, e.HAVE_CURRENT_DATA, 'element readyState');
- e.controller = new MediaController();
- assert_false(e.controller.paused, 'controller paused state before click');
- assert_true(e.paused, 'element paused state before click');
- e.click();
- assert_false(e.controller.paused, 'controller paused state after click');
- assert_false(e.paused, 'element paused state after click');
- t.done();
- });
- }, tagName + ' activation behavior for restrained media controller');
-
- async_test(function(t)
- {
- var e = document.createElement(tagName);
- e.controls = true;
- e.src = uniqueSrc();
- e.preload = 'auto';
- e.oncanplay = t.step_func(function()
- {
- e.pause(); // clears autoplaying flag
- assert_greater_than(e.readyState, e.HAVE_CURRENT_DATA, 'element readyState');
- e.controller = new MediaController();
- assert_false(e.controller.paused, 'controller paused state before click');
- assert_true(e.paused, 'element paused state before click');
- e.click();
- assert_false(e.controller.paused, 'controller paused state after click');
- assert_false(e.paused, 'element paused state after click');
- t.done();
- });
- }, tagName + ' activation behavior for restrained media controller (with non-autoplaying paused slave)');
-
- async_test(function(t)
- {
- var e1 = document.createElement(tagName);
- var e2 = document.createElement(tagName);
- e1.controls = true;
- e1.src = uniqueSrc();
- e2.src = uniqueSrc();
- e1.preload = e2.preload = 'auto';
- var canplaycount = 0;
- e1.oncanplay = e2.oncanplay = t.step_func(function()
- {
- if (++canplaycount != 2) {
- return;
- }
- e1.play();
- assert_greater_than(e1.readyState, e1.HAVE_CURRENT_DATA, 'element 1 readyState');
- assert_greater_than(e2.readyState, e2.HAVE_CURRENT_DATA, 'element 2 readyState');
- e1.controller = new MediaController();
- e2.controller = e1.controller;
- assert_false(e1.controller.paused, 'controller paused state before click');
- assert_false(e1.paused, 'element 1 paused state before click');
- assert_true(e2.paused, 'element 2 paused state before click');
- e1.click();
- assert_false(e1.controller.paused, 'controller paused state after click');
- assert_false(e1.paused, 'element 1 paused state after click');
- assert_false(e2.paused, 'element 2 paused state after click');
- t.done();
- });
- }, tagName + ' activation behavior for restrained media controller (with non-blocked playing and autoplaying-and-paused slaves)');
-
- test(function()
- {
- var e = document.createElement(tagName);
- e.controls = true;
- e.controller = new MediaController();
- e.controller.pause();
- assert_true(e.controller.paused, 'controller paused state before click');
- assert_true(e.paused, 'element paused state before click');
- e.click();
- assert_false(e.controller.paused, 'controller paused state after click');
- assert_true(e.paused, 'element paused state after click');
- }, tagName + ' activation behavior for paused media controller');
-
- async_test(function(t)
- {
- var e = document.createElement(tagName);
- e.controls = true;
- e.src = uniqueSrc();
- e.preload = 'auto';
- e.oncanplay = t.step_func(function()
- {
- assert_greater_than(e.readyState, e.HAVE_CURRENT_DATA, 'element readyState');
- e.controller = new MediaController();
- e.controller.pause();
- assert_true(e.controller.paused, 'controller paused state before click');
- assert_true(e.paused, 'element paused state before click');
- e.click();
- assert_false(e.controller.paused, 'controller paused state after click');
- assert_true(e.paused, 'element paused state after click');
- t.done();
- });
- }, tagName + ' activation behavior for paused media controller (with non-blocked paused slave)');
-
- test(function()
- {
- var e = document.createElement(tagName);
- e.controls = true;
- e.controller = new MediaController();
- e.controller.play();
- assert_false(e.controller.paused, 'controller paused state before click');
- assert_false(e.paused, 'element paused state before click');
- e.click();
- assert_true(e.controller.paused, 'controller paused state after click');
- assert_false(e.paused, 'element paused state after click');
- }, tagName + ' activation behavior for playing media controller');
-
- async_test(function(t)
- {
- var e = document.createElement(tagName);
- e.controls = true;
- e.src = uniqueSrc();
- e.preload = 'auto';
- e.oncanplay = t.step_func(function()
- {
- e.play();
- assert_greater_than(e.readyState, e.HAVE_CURRENT_DATA, 'element readyState');
- e.controller = new MediaController();
- assert_false(e.controller.paused, 'controller paused state before click');
- assert_false(e.paused, 'element paused state before click');
- e.click();
- assert_true(e.controller.paused, 'controller paused state after click');
- assert_false(e.paused, 'element paused state after click');
- t.done();
- });
- }, tagName + ' activation behavior for playing media controller (with non-blocked playing slave)');
-
- async_test(function(t)
- {
- var e1 = document.createElement(tagName);
- var e2 = document.createElement(tagName);
- e1.controls = true;
- e1.src = uniqueSrc();
- e1.preload = 'auto';
- e1.oncanplay = t.step_func(function()
- {
- assert_greater_than(e1.readyState, e1.HAVE_CURRENT_DATA, 'element 1 readyState');
- assert_equals(e2.readyState, e2.HAVE_NOTHING, 'element 2 readyState');
- e1.controller = new MediaController();
- e2.controller = e1.controller;
- assert_false(e1.controller.paused, 'controller paused state before click');
- assert_true(e1.paused, 'element 1 paused state before click');
- assert_true(e2.paused, 'element 2 paused state before click');
- e1.click();
- assert_true(e1.controller.paused, 'controller paused state after click');
- assert_true(e1.paused, 'element 1 paused state after click');
- assert_true(e2.paused, 'element 2 paused state after click');
- t.done();
- });
- }, tagName + ' activation behavior for playing media controller (with non-blocked autoplaying-and-paused and blocked paused slaves)');
-
- test(function()
- {
- var e = document.createElement(tagName);
- e.controls = true;
- assert_true(e.paused, 'paused state before click()');
- e.click();
- assert_false(e.paused, 'paused state after click()');
- }, tagName + ' activation behavior for paused media element');
-
- test(function()
- {
- var e = document.createElement(tagName);
- e.controls = true;
- e.play();
- assert_false(e.paused, 'paused state before click()');
- e.click();
- assert_true(e.paused, 'paused state after click()');
- }, tagName + ' activation behavior for playing media element');
-
- test(function()
- {
- var e = document.createElement(tagName);
- e.controls = true;
- e.onclick = function(ev) { ev.preventDefault(); };
- assert_true(e.paused, 'paused state before click()');
- e.click();
- assert_true(e.paused, 'paused state after click()');
- }, tagName + ' activation behavior for canceled event');
-
- test(function()
- {
- var e = document.createElement(tagName);
- assert_true(e.paused, 'paused state before click()');
- e.click();
- assert_true(e.paused, 'paused state after click()');
- }, tagName + ' activation behavior without controls');
-}
-
-activation_behavior_test('audio', findMediaFile('audio', 'content/test'));
-activation_behavior_test('video', findMediaFile('video', 'content/test'));
-</script>
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/media/activation-behavior-accesskey.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698