https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 238bd0377cc35e0f367f63b7e16d912f94ed7845 authored by Chris Nardi on 03 April 2018, 03:08:55 UTC
Serialize font shorthand like any other shorthand
Tip revision: 238bd03
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