summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/typedarray/dom-view.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/typedarray/dom-view.js')
-rw-r--r--js/src/jit-test/tests/typedarray/dom-view.js13
1 files changed, 13 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/typedarray/dom-view.js b/js/src/jit-test/tests/typedarray/dom-view.js
new file mode 100644
index 0000000000..cfc9ead74e
--- /dev/null
+++ b/js/src/jit-test/tests/typedarray/dom-view.js
@@ -0,0 +1,13 @@
+// Bug 1731039 fuzzbug. Exercises one of the new ArrayBufferOrView classes.
+
+var error;
+try {
+ encodeAsUtf8InBuffer("", "");
+} catch (e) {
+ error = e;
+}
+
+assertEq(error.message.includes("must be a Uint8Array"), true);
+
+if (typeof reportCompare === "function")
+ reportCompare(true, true);