summaryrefslogtreecommitdiffstats
path: root/js/src/tests/ecma_5
diff options
context:
space:
mode:
authorjanekptacijarabaci <janekptacijarabaci@seznam.cz>2018-03-19 10:46:14 +0100
committerjanekptacijarabaci <janekptacijarabaci@seznam.cz>2018-03-19 10:46:14 +0100
commit9384b08d877055a806bd61b2a3632897dfe4bbd8 (patch)
tree3f66efaac8926d93da8185c6e8eb20ce8c2c19f2 /js/src/tests/ecma_5
parentdf313c5b777daf119385beb8b12c60c33b35a2d0 (diff)
downloadUXP-9384b08d877055a806bd61b2a3632897dfe4bbd8.tar
UXP-9384b08d877055a806bd61b2a3632897dfe4bbd8.tar.gz
UXP-9384b08d877055a806bd61b2a3632897dfe4bbd8.tar.lz
UXP-9384b08d877055a806bd61b2a3632897dfe4bbd8.tar.xz
UXP-9384b08d877055a806bd61b2a3632897dfe4bbd8.zip
Tests
Issue #77
Diffstat (limited to 'js/src/tests/ecma_5')
-rw-r--r--js/src/tests/ecma_5/RegExp/instance-property-storage-introspection.js5
1 files changed, 1 insertions, 4 deletions
diff --git a/js/src/tests/ecma_5/RegExp/instance-property-storage-introspection.js b/js/src/tests/ecma_5/RegExp/instance-property-storage-introspection.js
index 1f7c7042f..998d25e2c 100644
--- a/js/src/tests/ecma_5/RegExp/instance-property-storage-introspection.js
+++ b/js/src/tests/ecma_5/RegExp/instance-property-storage-introspection.js
@@ -40,9 +40,7 @@ function checkDataProperty(obj, p, expect, msg)
// Check a bunch of "empty" regular expressions first.
-var choices = [{ msg: "RegExp.prototype",
- get: function() { return RegExp.prototype; } },
- { msg: "new RegExp()",
+var choices = [{ msg: "new RegExp()",
get: function() { return new RegExp(); } },
{ msg: "/(?:)/",
get: Function("return /(?:)/;") }];
@@ -55,7 +53,6 @@ function checkRegExp(r, msg, lastIndex)
checkDataProperty(r, "lastIndex", expect, msg);
}
-checkRegExp(RegExp.prototype, "RegExp.prototype", 0);
checkRegExp(new RegExp(), "new RegExp()", 0);
checkRegExp(/(?:)/, "/(?:)/", 0);
checkRegExp(Function("return /(?:)/;")(), 'Function("return /(?:)/;")()', 0);