blob: d3aa2ec658ddb7fb0b0b5e59ecceb43b39c77a51 [file] [log] [blame]
<!--
postMessage(navigator.appName);
/*
-->
<!doctype html>
<title>navigator.appName</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, navigator.appName);
this.done();
});
});
</script>
<!--
*/
//-->