| Index: third_party/WebKit/LayoutTests/media/encrypted-media/encrypted-media-lifetime-mediakeys-with-session.html
|
| diff --git a/third_party/WebKit/LayoutTests/media/encrypted-media/encrypted-media-lifetime-mediakeys-with-session.html b/third_party/WebKit/LayoutTests/media/encrypted-media/encrypted-media-lifetime-mediakeys-with-session.html
|
| index 744d351eb7589e9ad3578b3bd345d80baa1b681a..c51b4ed67b65a69fe1e6bc62d7ba05c74320233e 100644
|
| --- a/third_party/WebKit/LayoutTests/media/encrypted-media/encrypted-media-lifetime-mediakeys-with-session.html
|
| +++ b/third_party/WebKit/LayoutTests/media/encrypted-media/encrypted-media-lifetime-mediakeys-with-session.html
|
| @@ -31,12 +31,9 @@
|
| }
|
|
|
| // Create a MediaKeys object with a session.
|
| - getSupportedInitDataType().then(function(type) {
|
| - initDataType = type;
|
| + navigator.requestMediaKeySystemAccess('org.w3.clearkey', getSimpleConfiguration()).then(function(access) {
|
| + initDataType = access.getConfiguration().initDataTypes[0];
|
| initData = getInitData(initDataType);
|
| - return navigator.requestMediaKeySystemAccess('org.w3.clearkey', [{}]);
|
| - }).then(function(access) {
|
| - assert_equals(access.keySystem, 'org.w3.clearkey');
|
| return access.createMediaKeys();
|
| }).then(function(result) {
|
| mediaKeys = result;
|
|
|