Restored /g flag to rspaces; Adds unit tests; Supplements #9008
This commit is contained in:
parent
e5f4ec846c
commit
ca367674c1
|
@ -4,7 +4,7 @@ var hasOwn = Object.prototype.hasOwnProperty,
|
|||
rnamespaces = /\.(.*)$/,
|
||||
rformElems = /^(?:textarea|input|select)$/i,
|
||||
rperiod = /\./g,
|
||||
rspaces = /\s+/,
|
||||
rspaces = /\s+/g,
|
||||
rescape = /[^\w\s.|`]/g,
|
||||
fcleanup = function( nm ) {
|
||||
return nm.replace(rescape, "\\$&");
|
||||
|
|
|
@ -68,6 +68,22 @@ test("bind(), multiple events at once", function() {
|
|||
equals( mouseoverCounter, 1, "bind() with multiple events at once" );
|
||||
});
|
||||
|
||||
test("bind(), five events at once", function() {
|
||||
expect(1);
|
||||
|
||||
var count = 0,
|
||||
handler = function(event) {
|
||||
count++;
|
||||
};
|
||||
|
||||
jQuery("#firstp").bind("click mouseover foo bar baz", handler)
|
||||
.trigger("click").trigger("mouseover")
|
||||
.trigger("foo").trigger("bar")
|
||||
.trigger("baz");
|
||||
|
||||
equals( count, 5, "bind() five events at once" );
|
||||
});
|
||||
|
||||
test("bind(), multiple events at once and namespaces", function() {
|
||||
expect(7);
|
||||
|
||||
|
|
Loading…
Reference in a new issue