Revision dcc531a79a68cd725ffe68fe06467c7e8560c8ad authored by Boris Zbarsky on 08 April 2016, 10:15:41 UTC, committed by James Graham on 08 April 2016, 10:47:04 UTC
1 parent 3d7a057
Raw File
WorkerLocation_port.htm
<!DOCTYPE html>
<title> WorkerLocation URL decomposition IDL attribute: port </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.port, location.port);
  });
});
</script>
back to top