Fix annex B tests

This commit is contained in:
Rick Waldron 2018-01-25 14:37:36 -05:00
parent 05d1ddf670
commit 6f59ddc457
2 changed files with 9 additions and 22 deletions

View File

@ -4,24 +4,18 @@
/*--- /*---
esid: sec-string.prototype.trimLeft esid: sec-string.prototype.trimLeft
description: > description: >
String.prototype.trimLeft.name is "trimLeft". String.prototype.trimLeft.name is "trimStart".
info: > info: >
String.prototype.trimLeft ( ) String.prototype.trimLeft ( )
17 ECMAScript Standard Built-in Objects: The function object that is the initial value of String.prototype.trimLeft is the same function object that is the initial value of String.prototype.trimStart.
Every built-in Function object, including constructors, that is not
identified as an anonymous function has a name property whose value
is a String.
Unless otherwise specified, the name property of a built-in Function
object, if it exists, has the attributes { [[Writable]]: false,
[[Enumerable]]: false, [[Configurable]]: true }.
includes: [propertyHelper.js] includes: [propertyHelper.js]
features: [string-trimming] features: [string-trimming,String.prototype.trimStart]
---*/ ---*/
verifyProperty(String.prototype.trimLeft, "name", { verifyProperty(String.prototype.trimLeft, "name", {
value: "trimLeft", value: "trimStart",
enumerable: false, enumerable: false,
writable: false, writable: false,
configurable: true, configurable: true,

View File

@ -4,24 +4,17 @@
/*--- /*---
esid: sec-string.prototype.trimRight esid: sec-string.prototype.trimRight
description: > description: >
String.prototype.trimRight.name is "trimRight". String.prototype.trimRight.name is "trimEnd".
info: > info: >
String.prototype.trimRight ( ) String.prototype.trimRight ( )#
17 ECMAScript Standard Built-in Objects: The function object that is the initial value of String.prototype.trimRight is the same function object that is the initial value of String.prototype.trimEnd.
Every built-in Function object, including constructors, that is not
identified as an anonymous function has a name property whose value
is a String.
Unless otherwise specified, the name property of a built-in Function
object, if it exists, has the attributes { [[Writable]]: false,
[[Enumerable]]: false, [[Configurable]]: true }.
includes: [propertyHelper.js] includes: [propertyHelper.js]
features: [string-trimming] features: [string-trimming,String.prototype.trimEnd]
---*/ ---*/
verifyProperty(String.prototype.trimRight, "name", { verifyProperty(String.prototype.trimRight, "name", {
value: "trimRight", value: "trimEnd",
enumerable: false, enumerable: false,
writable: false, writable: false,
configurable: true, configurable: true,