summaryrefslogtreecommitdiff
path: root/test/built-ins/RegExp/prototype/Symbol.match
diff options
context:
space:
mode:
authorLeo Balter <leonardo.balter@gmail.com>2017-09-07 18:24:34 -0400
committerRick Waldron <waldron.rick@gmail.com>2017-09-08 10:13:50 -0400
commitf52f233934e79a839f430915d8278e4ff8c8f911 (patch)
tree6f8a7aef379f456ce16c9449aaf1c280ca2b4a34 /test/built-ins/RegExp/prototype/Symbol.match
parent72537004b0c6785af617a3ae0bde715dbbe26fbb (diff)
downloadqtdeclarative-testsuites-f52f233934e79a839f430915d8278e4ff8c8f911.tar.gz
Add missing Symbol.match feature flags
Diffstat (limited to 'test/built-ins/RegExp/prototype/Symbol.match')
-rw-r--r--test/built-ins/RegExp/prototype/Symbol.match/length.js1
-rw-r--r--test/built-ins/RegExp/prototype/Symbol.match/name.js1
-rw-r--r--test/built-ins/RegExp/prototype/Symbol.match/prop-desc.js1
3 files changed, 3 insertions, 0 deletions
diff --git a/test/built-ins/RegExp/prototype/Symbol.match/length.js b/test/built-ins/RegExp/prototype/Symbol.match/length.js
index 249d60fc2..db6975289 100644
--- a/test/built-ins/RegExp/prototype/Symbol.match/length.js
+++ b/test/built-ins/RegExp/prototype/Symbol.match/length.js
@@ -16,6 +16,7 @@ info: >
object has the attributes { [[Writable]]: false, [[Enumerable]]: false,
[[Configurable]]: true }.
includes: [propertyHelper.js]
+features: [Symbol.match]
---*/
assert.sameValue(RegExp.prototype[Symbol.match].length, 1);
diff --git a/test/built-ins/RegExp/prototype/Symbol.match/name.js b/test/built-ins/RegExp/prototype/Symbol.match/name.js
index d3ceefce2..2d12280df 100644
--- a/test/built-ins/RegExp/prototype/Symbol.match/name.js
+++ b/test/built-ins/RegExp/prototype/Symbol.match/name.js
@@ -14,6 +14,7 @@ info: >
object, if it exists, has the attributes { [[Writable]]: false,
[[Enumerable]]: false, [[Configurable]]: true }.
includes: [propertyHelper.js]
+features: [Symbol.match]
---*/
assert.sameValue(RegExp.prototype[Symbol.match].name, '[Symbol.match]');
diff --git a/test/built-ins/RegExp/prototype/Symbol.match/prop-desc.js b/test/built-ins/RegExp/prototype/Symbol.match/prop-desc.js
index 63a08e43d..8aa06dabb 100644
--- a/test/built-ins/RegExp/prototype/Symbol.match/prop-desc.js
+++ b/test/built-ins/RegExp/prototype/Symbol.match/prop-desc.js
@@ -11,6 +11,7 @@ info: >
B.2 has the attributes { [[Writable]]: true, [[Enumerable]]: false,
[[Configurable]]: true } unless otherwise specified.
includes: [propertyHelper.js]
+features: [Symbol.match]
---*/
verifyNotEnumerable(RegExp.prototype, Symbol.match);