diff --git a/test/annexB/built-ins/String/prototype/trimLeft/name.js b/test/annexB/built-ins/String/prototype/trimLeft/name.js index d9509c30865fdb24c6d17c5dd2a323d9fc814453..af1a0b1db895ac6c7d890bdad672a26ac4727cef 100644 --- a/test/annexB/built-ins/String/prototype/trimLeft/name.js +++ b/test/annexB/built-ins/String/prototype/trimLeft/name.js @@ -4,24 +4,18 @@ /*--- esid: sec-string.prototype.trimLeft description: > - String.prototype.trimLeft.name is "trimLeft". + String.prototype.trimLeft.name is "trimStart". info: > String.prototype.trimLeft ( ) - 17 ECMAScript Standard Built-in Objects: - Every built-in Function object, including constructors, that is not - identified as an anonymous function has a name property whose value - is a String. + 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. - 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] -features: [string-trimming] +features: [string-trimming,String.prototype.trimStart] ---*/ verifyProperty(String.prototype.trimLeft, "name", { - value: "trimLeft", + value: "trimStart", enumerable: false, writable: false, configurable: true, diff --git a/test/annexB/built-ins/String/prototype/trimRight/name.js b/test/annexB/built-ins/String/prototype/trimRight/name.js index 14f6b494fc7c29a0f1a5bea67feaaad0636dec6b..2044da80db894345b304ae4332d4b3bca97dad3e 100644 --- a/test/annexB/built-ins/String/prototype/trimRight/name.js +++ b/test/annexB/built-ins/String/prototype/trimRight/name.js @@ -4,24 +4,17 @@ /*--- esid: sec-string.prototype.trimRight description: > - String.prototype.trimRight.name is "trimRight". + String.prototype.trimRight.name is "trimEnd". info: > - String.prototype.trimRight ( ) + String.prototype.trimRight ( )# - 17 ECMAScript Standard Built-in Objects: - 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 }. + 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. includes: [propertyHelper.js] -features: [string-trimming] +features: [string-trimming,String.prototype.trimEnd] ---*/ verifyProperty(String.prototype.trimRight, "name", { - value: "trimRight", + value: "trimEnd", enumerable: false, writable: false, configurable: true,