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

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

Issue 209383013: Increase the timeout for media element activation tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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 | « no previous file | no next file » | 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
index 0d9a3ccf9ea2233e5bb2f7c98d25be7be519e21b..93c18252372a8804e35544c2007250a68036b1f6 100644
--- a/LayoutTests/media/activation-behavior.html
+++ b/LayoutTests/media/activation-behavior.html
@@ -5,6 +5,8 @@
<script src="media-file.js"></script>
<div id="log"></div>
<script>
+setup({ timeout: 10000 });
acolwell GONE FROM CHROMIUM 2014/03/25 22:57:55 It would be nice to make this and the ones below t
philipj_slow 2014/03/26 09:06:43 Yeah, it would be nice if the default timeouts as
+
function activation_behavior_test(tagName, src)
{
async_test(function(t)
@@ -24,7 +26,8 @@ function activation_behavior_test(tagName, src)
assert_false(e.paused, 'element paused state after click');
t.done();
});
- }, tagName + ' activation behavior for restrained media controller');
+ }, tagName + ' activation behavior for restrained media controller',
+ { timeout: 10000 });
async_test(function(t)
{
@@ -44,7 +47,8 @@ function activation_behavior_test(tagName, src)
assert_false(e.paused, 'element paused state after click');
t.done();
});
- }, tagName + ' activation behavior for restrained media controller (with non-autoplaying paused slave)');
+ }, tagName + ' activation behavior for restrained media controller (with non-autoplaying paused slave)',
+ { timeout: 10000 });
async_test(function(t)
{
@@ -73,7 +77,8 @@ function activation_behavior_test(tagName, src)
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)');
+ }, tagName + ' activation behavior for restrained media controller (with non-blocked playing and autoplaying-and-paused slaves)',
+ { timeout: 10000 });
test(function()
{
@@ -106,7 +111,8 @@ function activation_behavior_test(tagName, src)
assert_true(e.paused, 'element paused state after click');
t.done();
});
- }, tagName + ' activation behavior for paused media controller (with non-blocked paused slave)');
+ }, tagName + ' activation behavior for paused media controller (with non-blocked paused slave)',
+ { timeout: 10000 });
test(function()
{
@@ -139,7 +145,8 @@ function activation_behavior_test(tagName, src)
assert_false(e.paused, 'element paused state after click');
t.done();
});
- }, tagName + ' activation behavior for playing media controller (with non-blocked playing slave)');
+ }, tagName + ' activation behavior for playing media controller (with non-blocked playing slave)',
+ { timeout: 10000 });
async_test(function(t)
{
@@ -163,7 +170,8 @@ function activation_behavior_test(tagName, src)
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)');
+ }, tagName + ' activation behavior for playing media controller (with non-blocked autoplaying-and-paused and blocked paused slaves)',
+ { timeout: 10000 });
test(function()
{
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698