blob: fadc343ed343e444dd401c257ace19233131f586 [file] [log] [blame]
<body>
<video id="video" width="300" controls></video>
<script src="full-screen-test.js"></script>
<script src=../media/media-file.js></script>
<script>
setSrcById("video", findMediaFile("video", "../media/content/test"));
var video = document.getElementById('video');
// Bail out early if the full screen API is not enabled or is missing:
if (Element.prototype.webkitRequestFullScreen == undefined) {
logResult(false, "Element.prototype.webkitRequestFullScreen == undefined");
endTest();
} else {
waitForEventTestAndEnd(document, 'webkitfullscreenchange', "video.clientWidth==document.body.clientWidth");
runWithKeyDown(function(){video.webkitRequestFullScreen()});
}
</script>
</body>