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 }); |
} |
}; |