Revision 52e60f154fdfdef290e477f9f95a0e683dfd9971 authored by Aryeh Gregor on 21 August 2016, 14:20:48 UTC, committed by Aryeh Gregor on 22 August 2016, 15:37:23 UTC
1 parent 478d7e9
Raw File
WorkerNavigator_appVersion.htm
<!DOCTYPE html>
<title> WorkerNavigator appVersion </title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id=log></div>
<script>
async_test(function(t) {
  var worker = new Worker("./support/WorkerNavigator.js");
  worker.onmessage = t.step_func_done(function(e) {
    assert_equals(e.data.appVersion, navigator.appVersion);
  });
});
</script>
back to top