blob: 613e2f0df69033049cb9c434d283e5a773128158 [file] [log] [blame]
<!doctype html>
<html>
<script src = "/resources/testharness.js"></script>
<script src = "/resources/testharnessreport.js"></script>
<script>
// This is a regression test for https://crbug.com/1146824.
async_test((t) => {
const worker = new Worker('\n/path<', {type: 'module'});
worker.onerror = () => t.done();
}, 'Creating a worker should not crash.');
</script>
</html>