chromium/third_party/blink/web_tests/crypto/random-values-concurrent.js

// Compute some random values and reply with it.
var sample = new Uint8Array(100);
crypto.getRandomValues(sample);
self.postMessage(sample);