summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/RegExp/prototype/S15.10.6.1_A1_T2.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/RegExp/prototype/S15.10.6.1_A1_T2.js')
-rw-r--r--js/src/tests/test262/built-ins/RegExp/prototype/S15.10.6.1_A1_T2.js30
1 files changed, 30 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/RegExp/prototype/S15.10.6.1_A1_T2.js b/js/src/tests/test262/built-ins/RegExp/prototype/S15.10.6.1_A1_T2.js
new file mode 100644
index 0000000000..01dada3d9e
--- /dev/null
+++ b/js/src/tests/test262/built-ins/RegExp/prototype/S15.10.6.1_A1_T2.js
@@ -0,0 +1,30 @@
+// Copyright 2009 the Sputnik authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+info: |
+ The initial value of RegExp.prototype.constructor is the built-in RegExp
+ constructor
+es5id: 15.10.6.1_A1_T2
+description: >
+ Compare instance.constructor !== RegExp, where instance is new
+ RegExp.prototype.constructor
+---*/
+
+var __FACTORY = RegExp.prototype.constructor;
+
+var __instance = new __FACTORY;
+
+assert.sameValue(
+ __instance instanceof RegExp,
+ true,
+ 'The result of evaluating (__instance instanceof RegExp) is expected to be true'
+);
+
+assert.sameValue(
+ __instance.constructor,
+ RegExp,
+ 'The value of __instance.constructor is expected to equal the value of RegExp'
+);
+
+reportCompare(0, 0);