summaryrefslogtreecommitdiffstats
path: root/third_party/webkit/PerformanceTests/six-speed/tests/spread.es5
blob: bd13f44c6fc7a9b536c6b2073f2fc47fa686a78e (plain)
1
2
3
4
5
6
function fn() {
  return Math.max.apply(Math, [1,2,3]);
}

assertEqual(fn(), 3);
test(fn);