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

Unified Diff: third_party/WebKit/LayoutTests/media/encrypted-media/encrypted-media-async-creation-with-gc.html

Issue 2084053002: EME: Update tests so 'audioCapabilities' always provided (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: avConfiguration Created 4 years, 6 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
Index: third_party/WebKit/LayoutTests/media/encrypted-media/encrypted-media-async-creation-with-gc.html
diff --git a/third_party/WebKit/LayoutTests/media/encrypted-media/encrypted-media-async-creation-with-gc.html b/third_party/WebKit/LayoutTests/media/encrypted-media/encrypted-media-async-creation-with-gc.html
index 0193d95a9d27686958a0086d325cd3ebc10a57bc..293a45081fd81bff987c9022b08343c200473b71 100644
--- a/third_party/WebKit/LayoutTests/media/encrypted-media/encrypted-media-async-creation-with-gc.html
+++ b/third_party/WebKit/LayoutTests/media/encrypted-media/encrypted-media-async-creation-with-gc.html
@@ -20,7 +20,7 @@
getSupportedInitDataType().then(function(type) {
ddorwin 2016/06/24 03:05:22 We don't actually need this. If we ask for all typ
jrummell 2016/06/28 23:04:26 Done.
initDataType = type;
initData = getInitData(initDataType);
- return navigator.requestMediaKeySystemAccess('org.w3.clearkey', [{}]);
+ return navigator.requestMediaKeySystemAccess('org.w3.clearkey', simpleConfigurationForInitDataType(initDataType));
}).then(function(access) {
return access.createMediaKeys();
}).then(function(mediaKeys) {

Powered by Google App Engine
This is Rietveld 408576698