https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 2594ec0bcf0af2bc546e78dde66aa382bf039a80 authored by Aryeh Gregor on 18 April 2016, 17:32:41 UTC
Update for whatwg/dom@537e579f
Tip revision: 2594ec0
WorkerLocation_hash_encoding.htm
<!DOCTYPE html>
<title> WorkerLocation.hash with url encoding string </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#question%3f");
  worker.onmessage = t.step_func_done(function(e) {
    assert_equals(e.data.hash, "#question%3f");
  });
});
</script>
back to top