Revision a956588de9d51723e44f82262ed817f9b803d956 authored by Josh Matthews on 14 March 2018, 15:06:50 UTC, committed by Josh Matthews on 14 March 2018, 15:58:12 UTC
1 parent 6534d85
Raw File
WorkerLocation-origin.sub.window.js
async_test(t => {
  const frame = document.createElement("iframe"),
        asciiOrigin = location.protocol + "//{{domains[天気の良い日]}}:" + location.port,
        path = new URL("support/WorkerLocation-origin.html", location).pathname;
  frame.src = asciiOrigin + path;
  self.onmessage = t.step_func_done(e => {
    assert_equals(e.data.origin, asciiOrigin);
  });
  document.body.appendChild(frame);
  t.add_cleanup(() => frame.remove());
}, "workerLocation.origin must use ASCII code points");
back to top