https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 43bfc3183646ddf3358fe30841e81fd7923d175d authored by Chris Nardi on 26 April 2018, 18:12:45 UTC
Accept two values in the overflow shorthand
Tip revision: 43bfc31
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