No need to run trim on every class iteration in addClass, thanks for the heads-up Leeoniya.
This commit is contained in:
parent
053af95294
commit
437ddb931d
2 changed files with 8 additions and 3 deletions
|
@ -438,7 +438,7 @@ test("val(Function) with incoming value", function() {
|
|||
});
|
||||
|
||||
var testAddClass = function(valueObj) {
|
||||
expect(4);
|
||||
expect(5);
|
||||
var div = jQuery("div");
|
||||
div.addClass( valueObj("test") );
|
||||
var pass = true;
|
||||
|
@ -460,6 +460,10 @@ var testAddClass = function(valueObj) {
|
|||
div.attr("class", " foo");
|
||||
div.addClass( valueObj("test") );
|
||||
equals( div.attr("class"), "foo test", "Make sure there's no extra whitespace." );
|
||||
|
||||
div.attr("class", "foo");
|
||||
div.addClass( valueObj("bar baz") );
|
||||
equals( div.attr("class"), "foo bar baz", "Make sure there isn't too much trimming." );
|
||||
};
|
||||
|
||||
test("addClass(String)", function() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue