https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 2207a37c38f93ad6e74745dedb28e1dbd4660430 authored by Hwanseung Lee on 28 March 2018, 06:47:36 UTC
[css-typed-om] support x, y, cx, cy properties
Tip revision: 2207a37
WorkerLocation_search.htm
<!DOCTYPE html>
<title> WorkerLocation URL decomposition IDL attribute: search </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?SearchString');
  worker.onmessage = t.step_func_done(function(e) {
      assert_equals(e.data.search, '?SearchString');
  });
});
</script>
back to top