summaryrefslogtreecommitdiff
path: root/external/contributions/Google/sputnik_conformance_modified/15_Native/15.7_Number_Objects/15.7.4_Properties_of_the_Number_Prototype_Object/15.7.4.4_Number.prototype.valueOf/S15.7.4.4_A1_T01.js
diff options
context:
space:
mode:
Diffstat (limited to 'external/contributions/Google/sputnik_conformance_modified/15_Native/15.7_Number_Objects/15.7.4_Properties_of_the_Number_Prototype_Object/15.7.4.4_Number.prototype.valueOf/S15.7.4.4_A1_T01.js')
-rw-r--r--external/contributions/Google/sputnik_conformance_modified/15_Native/15.7_Number_Objects/15.7.4_Properties_of_the_Number_Prototype_Object/15.7.4.4_Number.prototype.valueOf/S15.7.4.4_A1_T01.js49
1 files changed, 49 insertions, 0 deletions
diff --git a/external/contributions/Google/sputnik_conformance_modified/15_Native/15.7_Number_Objects/15.7.4_Properties_of_the_Number_Prototype_Object/15.7.4.4_Number.prototype.valueOf/S15.7.4.4_A1_T01.js b/external/contributions/Google/sputnik_conformance_modified/15_Native/15.7_Number_Objects/15.7.4_Properties_of_the_Number_Prototype_Object/15.7.4.4_Number.prototype.valueOf/S15.7.4.4_A1_T01.js
new file mode 100644
index 000000000..940ccaadb
--- /dev/null
+++ b/external/contributions/Google/sputnik_conformance_modified/15_Native/15.7_Number_Objects/15.7.4_Properties_of_the_Number_Prototype_Object/15.7.4.4_Number.prototype.valueOf/S15.7.4.4_A1_T01.js
@@ -0,0 +1,49 @@
+// Copyright 2009 the Sputnik authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/**
+ * @name: S15.7.4.4_A1_T01;
+ * @section: 15.7.4.4;
+ * @assertion: Number.prototype.valueOf() returns this number value;
+ * @description: Call without argument;
+*/
+
+//CHECK#1
+if(Number.prototype.valueOf() !== 0){
+ $ERROR('#1: Number.prototype.valueOf() === 0');
+}
+
+//CHECK#2
+if((new Number()).valueOf() !== 0){
+ $ERROR('#2: (new Number()).valueOf() === 0');
+}
+
+//CHECK#3
+if((new Number(0)).valueOf() !== 0){
+ $ERROR('#3: (new Number(0)).valueOf() === 0');
+}
+
+//CHECK#4
+if((new Number(-1)).valueOf() !== -1){
+ $ERROR('#4: (new Number(-1)).valueOf() === -1');
+}
+
+//CHECK#5
+if((new Number(1)).valueOf() !== 1){
+ $ERROR('#5: (new Number(1)).valueOf() === 1');
+}
+
+//CHECK#6
+if(!isNaN((new Number(Number.NaN)).valueOf())){
+ $ERROR('#6: (new Number(Number.NaN)).valueOf() === NaN');
+}
+
+//CHECK#7
+if((new Number(Number.POSITIVE_INFINITY)).valueOf() !== Number.POSITIVE_INFINITY){
+ $ERROR('#7: (new Number(Number.POSITIVE_INFINITY)).valueOf() === Infinity');
+}
+
+//CHECK#8
+if((new Number(Number.NEGATIVE_INFINITY)).valueOf() !== Number.NEGATIVE_INFINITY){
+ $ERROR('#8: (new Number(Number.NEGATIVE_INFINITY)).valueOf() === -Infinity');
+}