Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / js / script-tests / array-join-bug-11524.js
blob9514678df83f12ff8c5682929c8d89486f0f4842
1 description(
2 "This test verifies that Array.prototype.join uses the ToString operator rather than calling element.toString(). \
3 See <a href='http://bugs.webkit.org/show_bug.cgi?id=11524'>bug 11524</a> for more information."
4 );
6 var customObject = {toString: 0, valueOf: function() { return "custom object"; } };
7 shouldBe("[customObject].join()", "'custom object'");