<!DOCTYPE html>
<p>This test intentionally lets the video keep playing past end of test to ensure
that shutdown is clean, since DumpRenderTree used to crash in this case.</p>
<video autoplay></video>
<script>
testRunner.dumpAsText();
var video = document.querySelector("video");
video.onplaying = function() {
testRunner.notifyDone();
};
video.src = "content/test.ogv";
</script>