summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/harness/decimalToHexString.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/harness/decimalToHexString.js')
-rw-r--r--js/src/tests/test262/harness/decimalToHexString.js28
1 files changed, 28 insertions, 0 deletions
diff --git a/js/src/tests/test262/harness/decimalToHexString.js b/js/src/tests/test262/harness/decimalToHexString.js
new file mode 100644
index 0000000000..02786495ef
--- /dev/null
+++ b/js/src/tests/test262/harness/decimalToHexString.js
@@ -0,0 +1,28 @@
+// Copyright (C) 2017 Rick Waldron. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+description: >
+ Including decimalToHexString.js will expose two functions:
+
+ decimalToHexString
+ decimalToPercentHexString
+
+includes: [decimalToHexString.js]
+---*/
+
+assert.sameValue(decimalToHexString(-1), "FFFFFFFF");
+assert.sameValue(decimalToHexString(0.5), "0000");
+assert.sameValue(decimalToHexString(1), "0001");
+assert.sameValue(decimalToHexString(100), "0064");
+assert.sameValue(decimalToHexString(65535), "FFFF");
+assert.sameValue(decimalToHexString(65536), "10000");
+
+assert.sameValue(decimalToPercentHexString(-1), "%FF");
+assert.sameValue(decimalToPercentHexString(0.5), "%00");
+assert.sameValue(decimalToPercentHexString(1), "%01");
+assert.sameValue(decimalToPercentHexString(100), "%64");
+assert.sameValue(decimalToPercentHexString(65535), "%FF");
+assert.sameValue(decimalToPercentHexString(65536), "%00");
+
+reportCompare(0, 0);