https://github.com/web-platform-tests/wpt
Raw File
Tip revision: c4de0019f3aa95861f0c9f646e9cd0c0f1252594 authored by Anne van Kesteren on 23 March 2018, 17:49:38 UTC
Comment out SVGElement dependency from html.idl
Tip revision: c4de001
WorkerLocation_host.htm
<!DOCTYPE html>
<title> WorkerLocation URL decomposition IDL attribute: host </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) {
    assert_equals(e.data.host, location.host);
  });
});
</script>
back to top