Revision a6af537ff9a07b74b79ff16a7ad001ae4e335bbe authored by Ms2ger on 13 May 2016, 08:42:24 UTC, committed by Ms2ger on 13 May 2016, 08:44:13 UTC
1 parent fc950b6
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