diff options
-rw-r--r-- | extensions/crypto/00_crypto.js | 4 | ||||
-rw-r--r-- | tools/wpt/expectation.json | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/extensions/crypto/00_crypto.js b/extensions/crypto/00_crypto.js index 98359775e..99e6864e7 100644 --- a/extensions/crypto/00_crypto.js +++ b/extensions/crypto/00_crypto.js @@ -776,11 +776,13 @@ !( arrayBufferView instanceof Int8Array || arrayBufferView instanceof Uint8Array || + arrayBufferView instanceof Uint8ClampedArray || arrayBufferView instanceof Int16Array || arrayBufferView instanceof Uint16Array || arrayBufferView instanceof Int32Array || arrayBufferView instanceof Uint32Array || - arrayBufferView instanceof Uint8ClampedArray + arrayBufferView instanceof BigInt64Array || + arrayBufferView instanceof BigUint64Array ) ) { throw new DOMException( diff --git a/tools/wpt/expectation.json b/tools/wpt/expectation.json index 2087b70aa..dc33d70de 100644 --- a/tools/wpt/expectation.json +++ b/tools/wpt/expectation.json @@ -1962,7 +1962,7 @@ "wrapKey_unwrapKey.https.any.html": false }, "randomUUID.any.html": true, - "getRandomValues-bigint.tentative.any.html": false + "getRandomValues-bigint.tentative.any.html": true }, "console": { "console-is-a-namespace.any.html": true, |