summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/scripting-1/the-script-element/module/dynamic-import/microtasks/css-import-in-worker.any.js
blob: bd6f5d092f3a6af3d405a86254dde9f7fc608ce2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// META: global=dedicatedworker,sharedworker
// META: script=ticker.js

promise_test(async t => {
  // Use Date.now() to ensure that the module is not in the module map
  const specifier = "./empty-module.css?" + Date.now();

  const getCount = ticker(1000);

  const importP = import(specifier, { assert: { type: "css" } });
  await promise_rejects_js(t, TypeError, importP, 'import() should reject');

  assert_less_than(getCount(), 1000);
}, "import() should not drain the microtask queue if it fails because of the 'type: css' assertion in a worker");