| Index: third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/media-src-track-block.html
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/media-src-track-block.html b/third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/media-src-track-block.html
|
| deleted file mode 100644
|
| index 84276b7bda63acd8ab5107b6480fca1c9287c3d4..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/media-src-track-block.html
|
| +++ /dev/null
|
| @@ -1,31 +0,0 @@
|
| -<html>
|
| -<head>
|
| - <meta http-equiv="Content-Security-Policy" content="media-src 'none'">
|
| - <script>
|
| - if (window.testRunner) {
|
| - testRunner.dumpAsText();
|
| - testRunner.waitUntilDone();
|
| - }
|
| - function loaded() {
|
| - alert("FAIL");
|
| - if (window.testRunner)
|
| - testRunner.notifyDone();
|
| - }
|
| - function errored() {
|
| - alert("PASS");
|
| - if (window.testRunner)
|
| - testRunner.notifyDone();
|
| - }
|
| - function start() {
|
| - var track = document.querySelector('track');
|
| - track.track.mode = "hidden";
|
| - track.setAttribute('src', 'resources/track.vtt');
|
| - }
|
| - </script>
|
| -</head>
|
| -<body onload="start()">
|
| - <video>
|
| - <track kind="captions" onload="loaded()" onerror="errored()">
|
| - </video>
|
| -</body>
|
| -</html>
|
|
|