Skip to content
Snippets Groups Projects
Commit fdf8e8bd authored by Valerie R Young's avatar Valerie R Young Committed by Rick Waldron
Browse files

Fixup: Add object coercible tests for trim(start/End)

parent 2905e6a2
No related branches found
No related tags found
No related merge requests found
...@@ -2,10 +2,11 @@ ...@@ -2,10 +2,11 @@
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
esid: pending esid: sec-string.prototype.trimEnd
description: The "this" value must be object-coercible description: The "this" value must be object-coercible
info: | info: |
1. Let O be ? RequireObjectCoercible(this value). 1. Let O be ? RequireObjectCoercible(this value).
features: [string-trimming]
---*/ ---*/
var trimEnd = String.prototype.trimEnd; var trimEnd = String.prototype.trimEnd;
......
...@@ -2,10 +2,11 @@ ...@@ -2,10 +2,11 @@
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
esid: pending esid: sec-string.prototype.trimStart
description: The "this" value must be object-coercible description: The "this" value must be object-coercible
info: | info: |
1. Let O be ? RequireObjectCoercible(this value). 1. Let O be ? RequireObjectCoercible(this value).
features: [string-trimming]
---*/ ---*/
var trimStart = String.prototype.trimStart; var trimStart = String.prototype.trimStart;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment