blob: 6c85414663d7be59da8adf0659ba9495898813c9 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Security-Policy" content="media-src *">
<style>
video {
background-color: red;
width: 128px;
height: 128px;
}
</style>
<script src="../../media/media-file.js"></script>
<script>
if (window.testRunner)
testRunner.waitUntilDone();
function testFinished()
{
if (window.testRunner)
testRunner.notifyDone();
}
window.onload = function ()
{
var video = document.getElementById("video");
video.oncanplaythrough = function () {
// Use a zero timer to ensure that the first frame of the video is drawn.
window.setTimeout(testFinished, 0);
}
video.onerror = testFinished;
video.src = "../../media/" + findMediaFile("video", "content/test");
}
</script>
</head>
<body>
<p>This tests that loading a video with a file URL is allowed when the page that is loaded from file URL has Content Security Policy &quot;media-src *&quot;. This test PASSED if you don't see a solid red square. Otherwise, it FAILED.</p>
<video id="video"></video>
</body>
</html>