https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 0518cdc5e847f3ba10a6fb0e08f3b51b0f5b6574 authored by Mattias Buelens on 08 March 2018, 20:54:03 UTC
Readable byte streams: autoAllocateChunkSize test must not ignore second read
Tip revision: 0518cdc
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