https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 8e5fd4fbd1d6ffe14bdc8c2070bd9f72aac2f837 authored by Wanming Lin on 11 April 2018, 10:10:08 UTC
Automate more focus tests with testdriver
Tip revision: 8e5fd4f
WorkerLocation_pathname.htm
<!DOCTYPE html>
<title> WorkerLocation URL decomposition IDL attribute: pathname </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 pathname = location.pathname;
    var expected = pathname.substring(0, pathname.lastIndexOf('/')) + '/support/WorkerLocation.js';
    assert_equals(e.data.pathname, expected);
  });
});
</script>
back to top