Searched refs:clause (Results 1 - 1 of 1) sorted by relevance

/glassfish-3.1.2/tests/community/web/jruby/helloapp/public/javascripts/
H A Dprototype.js1758 var params = this.params, expr = this.expression, match, modifier, clause, rest;
1768 modifier = match[1], clause = match[2], rest = match[3];
1770 case '#': params.id = clause; break;
1771 case '.': params.classNames.push(clause); break;
1773 case undefined: params.tagName = clause.toUpperCase(); break;
1783 var params = this.params, conditions = [], clause;
1787 if (clause = params.id)
1788 conditions.push('element.readAttribute("id") == ' + clause.inspect());
1789 if (clause = params.tagName)
1790 conditions.push('element.tagName.toUpperCase() == ' + clause
[all...]

Completed in 25 milliseconds