blob: 8f9d38dd857a092f82bfad24202124c897016b80 [file] [log] [blame]
<!doctype html>
<title>readonlyness of members of Navigator</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('007.js');
worker.onmessage = this.step_func(function(e) {
assert_equals(e.data, '');
this.done();
});
});
</script>