blob: 535ab3a7cb98e6afa27db8b43e669b161315b6aa [file] [log] [blame]
<!doctype html>
<title>navigator.language</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('language.js');
worker.onmessage = this.step_func(function(e) {
assert_equals(e.data, navigator.language);
this.done();
});
});
</script>