blob: 89ee113fb0cc4fdae0d7687f75e732d64d95ae3b [file] [log] [blame]
<!DOCTYPE html>
<title>Test that the controls repaint correctly on resize.</title>
<video controls width=200></video>
<script>
var video = document.querySelector("video");
if (window.testRunner)
testRunner.waitUntilDone();
video.onloadedmetadata = function() {
video.currentTime = 2;
video.style.width = "300px";
if (window.testRunner)
testRunner.notifyDone();
};
video.src = "../content/test.ogv";
</script>