| Index: third_party/WebKit/LayoutTests/media/encrypted-media/encrypted-media-events.html
|
| diff --git a/third_party/WebKit/LayoutTests/media/encrypted-media/encrypted-media-events.html b/third_party/WebKit/LayoutTests/media/encrypted-media/encrypted-media-events.html
|
| index 23747cb81568c217ccfb00e5315305f637f4f4f9..ce0cdb601aa13576dd51514e3fefcc8f3d9c31f4 100644
|
| --- a/third_party/WebKit/LayoutTests/media/encrypted-media/encrypted-media-events.html
|
| +++ b/third_party/WebKit/LayoutTests/media/encrypted-media/encrypted-media-events.html
|
| @@ -44,11 +44,9 @@
|
| test.done();
|
| }
|
|
|
| - 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) {
|
| return access.createMediaKeys();
|
| }).then(test.step_func(function(mediaKeys) {
|
| mediaKeySession = mediaKeys.createSession();
|
|
|