| Index: third_party/WebKit/LayoutTests/external/wpt/content-security-policy/blink-contrib/media-src-track-block.sub.html
 | 
| diff --git a/third_party/WebKit/LayoutTests/external/wpt/content-security-policy/blink-contrib/media-src-track-block.sub.html b/third_party/WebKit/LayoutTests/external/wpt/content-security-policy/blink-contrib/media-src-track-block.sub.html
 | 
| new file mode 100644
 | 
| index 0000000000000000000000000000000000000000..c8036ce174c77086b04bbc117d34b47b76654799
 | 
| --- /dev/null
 | 
| +++ b/third_party/WebKit/LayoutTests/external/wpt/content-security-policy/blink-contrib/media-src-track-block.sub.html
 | 
| @@ -0,0 +1,39 @@
 | 
| +<html>
 | 
| +
 | 
| +<head>
 | 
| +    <!-- Programmatically converted from a WebKit Reftest, please forgive resulting idiosyncracies.-->
 | 
| +    <title>media-src-track-block</title>
 | 
| +    <script src="/resources/testharness.js"></script>
 | 
| +    <script src="/resources/testharnessreport.js"></script>
 | 
| +    <script src="../support/logTest.sub.js?logs=[]"></script>
 | 
| +    <script src='../support/alertAssert.sub.js?alerts=["PASS"]'></script>
 | 
| +    <!-- enforcing policy:
 | 
| +media-src 'none'; script-src 'self' 'unsafe-inline'; connect-src 'self';
 | 
| +-->
 | 
| +    <script>
 | 
| +        function loaded() {
 | 
| +            alert_assert("FAIL");
 | 
| +        }
 | 
| +
 | 
| +        function errored() {
 | 
| +            alert_assert("PASS");
 | 
| +        }
 | 
| +
 | 
| +        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>
 | 
| +    <div id="log"></div>
 | 
| +    <script async defer src="../support/checkReport.sub.js?reportExists=true&reportField=violated-directive&reportValue=media-src%20'none'"></script>
 | 
| +</body>
 | 
| +
 | 
| +</html>
 | 
| 
 |