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
WorkerLocation.htm
<!DOCTYPE html>
<title> WorkerLocation object </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/WorkerLocation.js');
  worker.onmessage = t.step_func_done(function(e) {
    var href = window.location.href;
    var ExpectedResult = href.substring(0, href.lastIndexOf('/')) + '/support/WorkerLocation.js';
    assert_equals(e.data.location, ExpectedResult);
  });
});
</script>
back to top