Skip to main content

Bug Tracker

Side navigation

Ticket #6501: testcase.html


File testcase.html, 0.4 KB (added by fedor.indutny, April 29, 2010 03:45AM UTC)

Test case

<!DOCTYPE html>
<head>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
	var test = [];
	for (var i = 1E5;i>0;i--)
		test[test.length] = i;
	
	try {
		$.map(test, function () {
			return this;
		});
		console.log("Test passed.");
	} catch (e) {
		console.log("Test failed.", e);
	}
</script>
</head>
<body>
</body>

Download in other formats:

Original Format