Skip to content

Commit

Permalink
Removed all uses of @ in the benchmarker and added a couple :not() te…
Browse files Browse the repository at this point in the history
…sts.
  • Loading branch information
jeresig committed Jan 6, 2009
1 parent dcbec1f commit ef661a5
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions build/speed/benchmarker.js
Expand Up @@ -4,14 +4,15 @@
"div div div", "div div", ".dialog", "div.dialog", "div .dialog", "div div div", "div div", ".dialog", "div.dialog", "div .dialog",
"#speech5", "div#speech5", "div #speech5", "div > div", "div.scene div.dialog", "#speech5", "div#speech5", "div #speech5", "div > div", "div.scene div.dialog",
"div#scene1.scene div.dialog div", "#scene1 #speech1", "body > div.dialog div#speech5", "div#scene1.scene div.dialog div", "#scene1 #speech1", "body > div.dialog div#speech5",
"div:not(#speech5)", "div:not(.dialog)",
"div:nth-child(even)", "div:nth-child(odd)", "div:nth-child(even)", "div:nth-child(odd)",
"div:nth-child(1)", "div:nth-child(2n)", "div:nth-child(1)", "div:nth-child(2n)",
"div:nth-child(2n+3)", "div:first-child", "div:nth-child(2n+3)", "div:first-child",
"div:last-child", "div:only-child", "div:last-child", "div:only-child",
"div:contains(CELIA)", "div:contains(CELIA)",
"div ~ div", "div + div", "div ~ div", "div + div",
"div[@class]", "div[@class=dialog]", "div[@class!=dialog]", "div[class]", "div[class=dialog]", "div[class!=dialog]",
"div[@class^=dialog]", "div[@class$=dialog]", "div[@class*=dialog]" "div[class^=dialog]", "div[class$=dialog]", "div[class*=dialog]"
] ]


jQuery.fn.benchmark = function() { jQuery.fn.benchmark = function() {
Expand All @@ -38,8 +39,8 @@


jQuery("button.retryTies").bind("click", function() { jQuery("tr:has(td.tie) td.test").benchmark() }) jQuery("button.retryTies").bind("click", function() { jQuery("tr:has(td.tie) td.test").benchmark() })


jQuery("button.selectAll").bind("click", function() { jQuery("input[@type=checkbox]").each(function() { this.checked = true }) }) jQuery("button.selectAll").bind("click", function() { jQuery("input[type=checkbox]").each(function() { this.checked = true }) })
jQuery("button.deselectAll").bind("click", function() { jQuery("input[@type=checkbox]").each(function() { this.checked = false }) }) jQuery("button.deselectAll").bind("click", function() { jQuery("input[type=checkbox]").each(function() { this.checked = false }) })


jQuery("#addTest").bind("click", function() { jQuery("#addTest").bind("click", function() {
jQuery("table").append("<tr><td><input type='checkbox' /></td><td><input type='text' /><button>Add</button></td></tr>"); jQuery("table").append("<tr><td><input type='checkbox' /></td><td><input type='text' /><button>Add</button></td></tr>");
Expand Down Expand Up @@ -77,9 +78,6 @@
var times = times || 50; var times = times || 50;
var el = list[0]; var el = list[0];
var code = jQuery(el).text().replace(/^-/, ""); var code = jQuery(el).text().replace(/^-/, "");
if(!libraries[0].match(/^jQ/)) {
code = code.replace(/@/, "");
}
var timeArr = [] var timeArr = []
for(i = 0; i < times + 2; i++) { for(i = 0; i < times + 2; i++) {
var time = new Date() var time = new Date()
Expand Down

0 comments on commit ef661a5

Please sign in to comment.