Chromium Code Reviews| Index: LayoutTests/crypto/resources/random-values-concurrent.js |
| diff --git a/LayoutTests/crypto/resources/random-values-concurrent.js b/LayoutTests/crypto/resources/random-values-concurrent.js |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..71c07118eae3e4e059ab21de7371354b3ed93164 |
| --- /dev/null |
| +++ b/LayoutTests/crypto/resources/random-values-concurrent.js |
| @@ -0,0 +1,4 @@ |
| +// Compute some random values and reply with it. |
| +var sample = new Uint8Array(100); |
| +crypto.getRandomValues(sample); |
| +self.postMessage(sample); |