https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 5e7c87421195305ab688dd53dae61ae131609773 authored by Conley Owens on 04 April 2018, 18:03:08 UTC
bluetooth: web: test: Use AllResponsesConsumed
Tip revision: 5e7c874
WorkerGlobalScope_importScripts.htm
<!DOCTYPE html>
<title> WorkerGlobalScope API: importScripts() </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/ImportScripts.js");
  worker.onmessage = t.step_func_done(function(e) {
    assert_equals(e.data, "Pass");
  });
  worker.postMessage("ping");
});
</script>
back to top