summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/types/object/S8.6.2_A5_T2.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/language/types/object/S8.6.2_A5_T2.js')
-rw-r--r--js/src/tests/test262/language/types/object/S8.6.2_A5_T2.js33
1 files changed, 33 insertions, 0 deletions
diff --git a/js/src/tests/test262/language/types/object/S8.6.2_A5_T2.js b/js/src/tests/test262/language/types/object/S8.6.2_A5_T2.js
new file mode 100644
index 0000000000..5d69d10c53
--- /dev/null
+++ b/js/src/tests/test262/language/types/object/S8.6.2_A5_T2.js
@@ -0,0 +1,33 @@
+// Copyright 2009 the Sputnik authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+info: "[[Call]] executes code associated with the object"
+es5id: 8.6.2_A5_T2
+description: >
+ Call function-property of object, property defined as
+ seat['move']=function(){position++}
+---*/
+
+this.position=0;
+var seat = {};
+seat['move']=function(){position++};
+//////////////////////////////////////////////////////////////////////////////
+//CHECK#1
+seat.move();
+if (position !==1) {
+ throw new Test262Error('#1: this.position=0; seat = {}; seat[\'move\']=function(){position++}; seat.move(); position === 1. Actual: ' + (position));
+}
+//
+//////////////////////////////////////////////////////////////////////////////
+
+//////////////////////////////////////////////////////////////////////////////
+//CHECK#2
+seat['move']();
+if (position !==2) {
+ throw new Test262Error('#2: this.position=0; seat = {}; seat[\'move\']=function(){position++}; seat.move(); seat[\'move\'](); position === 2. Actual: ' + (position));
+}
+//
+//////////////////////////////////////////////////////////////////////////////
+
+reportCompare(0, 0);