Re: [html-tests][infra-tests] Test [[CanBlock]] in various agents (#5569)

@binji @lars-t-hansen can you help get this test passing? It seems that in a dedicated worker, in both Chrome and Firefox, the following code gives "timed-out" instead of "ok":

```
"use strict";
importScripts("/resources/testharness.js");

test(() => {
  const sab = new SharedArrayBuffer(16);
  const ta = new Int32Array(sab);

  assert_equals(Atomics.wait(ta, 0, 0, 10), "ok");
}, `[[CanBlock]] in a ${self.constructor.name}`);

done();
```

View on GitHub: https://github.com/w3c/web-platform-tests/pull/5569#issuecomment-294538852

Received on Monday, 17 April 2017 17:44:06 UTC