https://github.com/web-platform-tests/wpt
Raw File
Tip revision: c248d538c0ba192b0a7b55eef4aaed6e1b83a5a0 authored by Robert Longson on 14 April 2018, 16:20:39 UTC
support ping, rel, referrerPolicy, relList, hreflang, type and text on SVG a elements
Tip revision: c248d53
WorkerLocation_search_fragment.htm
<!DOCTYPE html>
<title> WorkerLocation.search with &lt;fragment&gt; in &lt;query&gt; </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?test#');
  worker.onmessage = t.step_func_done(function(e) {
    assert_equals(e.data.search, "?test");
  });
});
</script>
back to top