blob: 92dcfe0ae96f28acb16ce2c5fbe06f99f945cbfd [file] [log] [blame]
<!DOCTYPE html>
<p>Test that fullscreen video should not be affected by webkit-transform.</p>
<video id="video" allowfullscreen></video>
<script>
if (window.internals)
runPixelTests = true;
</script>
<script src="full-screen-test.js"></script>
<script>
var video = document.getElementById('video');
waitForEvent(document, 'webkitfullscreenchange', function()
{
endTest();
});
runWithKeyDown(function()
{
video.webkitRequestFullScreen();
});
</script>