blob: 82e568b523f18ce2ea20b0f6e81cbbdf3900106d [file] [log] [blame]
<!DOCTYPE html>
<title>Verify that a media element can be resumed after an idle suspend initiated during the HAVE_ENOUGH_DATA ready state.</title>
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<script src="suspend-util.js"></script>
<video></video>
<script>
async_test(function(t) {
suspendTest(t, document.querySelector('video'), 'content/test.webm',
HTMLMediaElement.HAVE_ENOUGH_DATA);
});
</script>