summaryrefslogtreecommitdiffstats
path: root/js/src/tests/ecma_6/DataView/detach-after-construction.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/ecma_6/DataView/detach-after-construction.js')
-rw-r--r--js/src/tests/ecma_6/DataView/detach-after-construction.js11
1 files changed, 11 insertions, 0 deletions
diff --git a/js/src/tests/ecma_6/DataView/detach-after-construction.js b/js/src/tests/ecma_6/DataView/detach-after-construction.js
new file mode 100644
index 000000000..7e9924778
--- /dev/null
+++ b/js/src/tests/ecma_6/DataView/detach-after-construction.js
@@ -0,0 +1,11 @@
+// |reftest| skip-if(!xulRuntime.shell) -- needs detachArrayBuffer
+
+var buf = new ArrayBuffer([1,2]);
+var bufView = new DataView(buf);
+
+detachArrayBuffer(buf);
+
+assertThrowsInstanceOf(() => bufView.getInt8(0), TypeError);
+
+if (typeof reportCompare === 'function')
+ reportCompare(0, 0, "OK");