Index: LayoutTests/crypto/random-values-types-expected.txt |
diff --git a/LayoutTests/crypto/random-values-types-expected.txt b/LayoutTests/crypto/random-values-types-expected.txt |
index 76af402573d6f27548266eefde25412ec9176f5e..d0665d176cd1f67b664c74cee2a3227879e44be6 100644 |
--- a/LayoutTests/crypto/random-values-types-expected.txt |
+++ b/LayoutTests/crypto/random-values-types-expected.txt |
@@ -5,6 +5,9 @@ On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE |
PASS 'crypto' in self is true |
PASS 'getRandomValues' in self.crypto is true |
+PASS crypto.getRandomValues() threw exception TypeError: Failed to execute 'getRandomValues' on 'Crypto': 1 argument required, but only 0 present.. |
+PASS crypto.getRandomValues(undefined) threw exception TypeMismatchError: Failed to execute 'getRandomValues' on 'Crypto': The provided ArrayBufferView is null.. |
+PASS crypto.getRandomValues(null) threw exception TypeMismatchError: Failed to execute 'getRandomValues' on 'Crypto': The provided ArrayBufferView is null.. |
PASS random = crypto.getRandomValues(new Uint8Array(3)) is defined. |
PASS random is an instance of Uint8Array |
PASS view = new Uint8Array(3) is defined. |