chromium/third_party/blink/web_tests/fast/canvas-api/canvas-createImageBitmap-invalid-blob-in-workers.html

<!DOCTYPE html>
<html>
<head>
<script src="../../resources/js-test.js"></script>
</head>
<body>
<script>
var worker = startWorker('./resources/canvas-createImageBitmap-invalid-blob-in-workers.js');

var xhr = new XMLHttpRequest();
xhr.open("GET", '../canvas/resources/empty.svg');
xhr.responseType = 'blob';
xhr.send();
xhr.onload = function() {
    worker.postMessage(xhr.response);
}
</script>
</body>
</html>