| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <script src=video-test.js></script> | |
| <script> | |
| async function runTest() { | |
| findMediaElement(); | |
| const file = "content/test.mp4" | |
| const resp = await fetch(file); | |
| const blob = await resp.blob(); | |
| waitForEventAndEnd('loadedmetadata'); | |
| waitForEventAndFail('error'); | |
| video.srcObject = blob; | |
| } | |
| </script> | |
| </head> | |
| <body onload="runTest()"> | |
| <video></video> | |
| </body> | |
| </html> |