blob: 46499318fb3de86175e73d944a37c2e119ffd08d [file] [log] [blame]
<!--
// prevent recursion
if ('beenThere' in self) {
throw 'null stringified to the empty string';
}
beenThere = true;
try {
importScripts(null);
postMessage(got);
} catch(ex) {
postMessage(String(ex));
}
/*
-->
<!doctype html>
<title>importScripts(null)</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="log"></div>
<script>
async_test(function() {
var worker = new Worker('#');
worker.onmessage = this.step_func(function(e) {
assert_equals(e.data, 'null');
this.done();
});
worker.onerror = this.step_func(function(e) {
assert_unreached(e.message);
});
});
</script>
<!--
*/
//-->