https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 9c265690381cc7dc0eddf307ca196a04d6d20e33 authored by Domenic Denicola on 30 June 2017, 20:45:47 UTC
Update for spec changes
Tip revision: 9c26569
WorkerNavigator_onLine.htm
<!DOCTYPE html>
<title> WorkerNavigator.onLine </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.onLine, navigator.onLine);
  });
});
</script>
back to top