| Index: third_party/WebKit/LayoutTests/media/remoteplayback/disable-remote-playback-prompt-throws.html
|
| diff --git a/third_party/WebKit/LayoutTests/media/remoteplayback/disable-remote-playback-prompt-throws.html b/third_party/WebKit/LayoutTests/media/remoteplayback/disable-remote-playback-prompt-throws.html
|
| deleted file mode 100644
|
| index 115d80771956c511dc73899e2eccc4ab9bc7916d..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/media/remoteplayback/disable-remote-playback-prompt-throws.html
|
| +++ /dev/null
|
| @@ -1,25 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<html>
|
| - <head>
|
| - <title>Test that calling prompt() when disableRemotePlayback attribute is set throws an exception</title>
|
| - <script src="../../resources/testharness.js"></script>
|
| - <script src="../../resources/testharnessreport.js"></script>
|
| - <script src="../media-file.js"></script>
|
| - </head>
|
| - <body>
|
| - <script>
|
| - promise_test(function(test)
|
| - {
|
| - var v = document.createElement('video');
|
| - v.src = findMediaFile('video', 'content/test');
|
| - v.disableRemotePlayback = true;
|
| - document.body.appendChild(v);
|
| -
|
| - return promise_rejects(
|
| - test,
|
| - new DOMException('disableRemotePlayback attribute is present.', 'InvalidStateError'),
|
| - v.remote.prompt());
|
| - }, 'Test that calling prompt() when disableRemotePlayback attribute is set throws an exception.');
|
| - </script>
|
| - </body>
|
| -</html>
|
|
|