chromium/third_party/blink/web_tests/media/media-src-suspend-before-have-metadata.html

<!DOCTYPE html>
<title>Verify that a media element can be resumed after an idle suspend initiated before the HAVE_METADATA 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_NOTHING);
});
</script>