https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 410ecd8aff1b5ef73898773094339deb2df92a9c authored by moz-wptsync-bot on 16 March 2018, 11:12:05 UTC
WPT should use toString() and not toSource(),
Tip revision: 410ecd8
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