summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Math/hypot/Math.hypot_NaN.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/Math/hypot/Math.hypot_NaN.js')
-rw-r--r--js/src/tests/test262/built-ins/Math/hypot/Math.hypot_NaN.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/Math/hypot/Math.hypot_NaN.js b/js/src/tests/test262/built-ins/Math/hypot/Math.hypot_NaN.js
new file mode 100644
index 0000000000..36260e96f3
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Math/hypot/Math.hypot_NaN.js
@@ -0,0 +1,14 @@
+// Copyright (c) 2014 Ryan Lewis. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+es6id: 20.2.2.18
+author: Ryan Lewis
+description: >
+ Math.hypot should return NaN if called with any argument that is
+ NaN.
+---*/
+
+assert.sameValue(Math.hypot(NaN, 3), NaN);
+
+reportCompare(0, 0);