summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/TypedArray/uint8clamped-constructor.js
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--js/src/tests/non262/TypedArray/uint8clamped-constructor.js9
1 files changed, 9 insertions, 0 deletions
diff --git a/js/src/tests/non262/TypedArray/uint8clamped-constructor.js b/js/src/tests/non262/TypedArray/uint8clamped-constructor.js
new file mode 100644
index 0000000000..3eefe70f1f
--- /dev/null
+++ b/js/src/tests/non262/TypedArray/uint8clamped-constructor.js
@@ -0,0 +1,9 @@
+for (var v of [-300, 255.6, 300, 3.5, -3.9]) {
+ var a = new Uint8ClampedArray([v]);
+ var b = new Uint8ClampedArray(1);
+ b[0] = v;
+
+ assertEq(a[0], b[0]);
+}
+
+reportCompare(true, true);