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

Unified Diff: LayoutTests/media/encrypted-media/encrypted-media-istypesupported.html

Issue 205143002: Increase timeout on flaky encrypted-media content tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: trying rebase again 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 | « LayoutTests/TestExpectations ('k') | LayoutTests/media/encrypted-media/encrypted-media-needkey.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/media/encrypted-media/encrypted-media-istypesupported.html
diff --git a/LayoutTests/media/encrypted-media/encrypted-media-istypesupported.html b/LayoutTests/media/encrypted-media/encrypted-media-istypesupported.html
index a4457dc3a14be4df7f4e1caf182ee4666c90139b..2bc8c504512f2f0d11bf0bf13b18a8ee429efc2e 100644
--- a/LayoutTests/media/encrypted-media/encrypted-media-istypesupported.html
+++ b/LayoutTests/media/encrypted-media/encrypted-media-istypesupported.html
@@ -8,6 +8,9 @@
<body>
<div id="log"></div>
<script>
+ // Timeout for all tests to run.
+ setup({ timeout: 60000 });
+
// Generate a distinct test for each type in |types|.
function test_type_support(types, expectation, description)
{
@@ -18,7 +21,8 @@
assert_true(type.length == 1 || type.length == 2);
assert_equals(MediaKeys.isTypeSupported.apply(
this, type), expectation, 'isTypeSupported');
- }, description + ": '" + type.join("', '") + "'");
+ }, description + ": '" + type.join("', '") + "'",
+ { timeout: 60000 });
}
};
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/media/encrypted-media/encrypted-media-needkey.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698