summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/String/prototype/trimEnd/this-value-boolean.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/String/prototype/trimEnd/this-value-boolean.js')
-rw-r--r--js/src/tests/test262/built-ins/String/prototype/trimEnd/this-value-boolean.js33
1 files changed, 33 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/String/prototype/trimEnd/this-value-boolean.js b/js/src/tests/test262/built-ins/String/prototype/trimEnd/this-value-boolean.js
new file mode 100644
index 0000000000..e4d99dc291
--- /dev/null
+++ b/js/src/tests/test262/built-ins/String/prototype/trimEnd/this-value-boolean.js
@@ -0,0 +1,33 @@
+// Copyright (c) 2017 Valerie Young. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+esid: sec-string.prototype.trimEnd
+description: Behavior when "this" value is a boolean.
+info: |
+ Runtime Semantics: TrimString ( string, where )
+ 2. Let S be ? ToString(str).
+
+ ToString ( argument )
+ Argument Type: Boolean
+ Result:
+ If argument is true, return "true".
+ If argument is false, return "false".
+features: [string-trimming, String.prototype.trimEnd]
+---*/
+
+var trimEnd = String.prototype.trimEnd
+
+assert.sameValue(
+ trimEnd.call(true),
+ 'true',
+ 'String.prototype.trimEnd.call(true)'
+);
+
+assert.sameValue(
+ String.prototype.trimEnd.call(false),
+ 'false',
+ 'String.prototype.trimEnd.call(false)'
+);
+
+reportCompare(0, 0);