blob: 3caef65790c9f9c4089c335ae7cca271f891ebe1 [file] [log] [blame]
// Copyright (c) 2012 Ecma International. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
es5id: 15.5.4.20-4-12
description: >
String.prototype.trim handles whitepace and lineterminators
(abc\u000B)
---*/
assert.sameValue("abc\u000B".trim(), "abc", '"abc\u000B".trim()');