Some improvements to the closest perf tests - works in all browsers now.

1.7/enhancement_8685
jeresig 2010-10-10 13:22:39 -04:00
parent 0ca35de311
commit 96d8c481b8
1 changed files with 7 additions and 5 deletions

View File

@ -10,15 +10,16 @@
jQuery(function ready() {
var node = $("#child"), name;
[".zoo", "#zoo", "[data-foo=zoo]", "#nonexistant"].forEach(function foreach(item) {
jQuery.each([".zoo", "#zoo", "[data-foo=zoo]", "#nonexistant"], function(i, item) {
name = "closest '" + item + "'";
console.log(name);
console.log("new", benchmarkString("$('#child').closest('" + item + "')", 5000, name));
console.log("old", benchmarkString("old('#child').closest('" + item + "')", 5000, name));
jQuery("#results").append("<li>" + name + "<ul>" +
"<li>new: " + benchmarkString("$('#child').closest('" + item + "')", 500, name) + "</li>" +
"<li>old: " + benchmarkString("old('#child').closest('" + item + "')", 500, name) + "</li>"
+ "</ul></li>");
});
});
</script>
</script>
</head>
<body>
<div>
@ -30,6 +31,7 @@
</div>
</div>
</div>
<ul id="results"></ul>
</body>
</html>