git://git.webkit.org
/
WebKit-https.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
JavaScriptCore:
[WebKit-https.git]
/
LayoutTests
/
fast
/
js
/
resources
/
sort-non-numbers.js
1
description("This tests numerically sorting an array of non-numbers.");
2
3
var test = [ "2", "1", "3" ];
4
test.sort(function (v1, v2) {
5
return v1 - v2;
6
});
7
8
shouldBe("String(test)", "'1,2,3'");
9
10
var successfullyParsed = true;