summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/types/object/S8.6.2_A5_T3.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/language/types/object/S8.6.2_A5_T3.js')
-rw-r--r--js/src/tests/test262/language/types/object/S8.6.2_A5_T3.js32
1 files changed, 32 insertions, 0 deletions
diff --git a/js/src/tests/test262/language/types/object/S8.6.2_A5_T3.js b/js/src/tests/test262/language/types/object/S8.6.2_A5_T3.js
new file mode 100644
index 0000000000..f1d8a6ee01
--- /dev/null
+++ b/js/src/tests/test262/language/types/object/S8.6.2_A5_T3.js
@@ -0,0 +1,32 @@
+// 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_T3
+description: >
+ Call function-property of global object, property defined as
+ knock=function(){count++}
+---*/
+
+var count=0;
+var knock=function(){count++};
+//////////////////////////////////////////////////////////////////////////////
+//CHECK#1
+knock();
+if (count !==1) {
+ throw new Test262Error('#1: count=0; knock=function(){count++}; knock(); count === 1. Actual: ' + (count));
+}
+//
+//////////////////////////////////////////////////////////////////////////////
+
+//////////////////////////////////////////////////////////////////////////////
+//CHECK#2
+this['knock']();
+if (count !==2) {
+ throw new Test262Error('#2: count=0; knock=function(){count++}; knock(); this[\'knock\'](); count === 2. Actual: ' + (count));
+}
+//
+//////////////////////////////////////////////////////////////////////////////
+
+reportCompare(0, 0);