2012-05-29 02:25:04 +00:00
if ( jQuery . fx ) {
2011-01-09 21:58:47 +00:00
module ( "effects" , { teardown : moduleTeardown } ) ;
2006-11-18 13:37:01 +00:00
2010-10-05 18:28:43 +00:00
test ( "sanity check" , function ( ) {
expect ( 1 ) ;
2011-04-17 06:43:57 +00:00
ok ( jQuery ( "#dl:visible, #qunit-fixture:visible, #foo:visible" ) . length === 3 , "QUnit state is correct for testing effects" ) ;
2010-10-05 18:28:43 +00:00
} ) ;
Implement expectation test instead of using _removeData. Close gh-997.
* Removed inline usage of QUnit.reset() because it is messing with the
expectation model as reset does .empty() which does a recursive cleanData
on everything in #qunit-fixture, so any expectJqData above .reset() would
fail negatively.
Instead of calling reset inline, either updated the following assertions to
take previous assertions' state into account, or broke the test() up into
2 tests at the point where it would call QUnit.reset.
* After introducing the new memory leak discovery a whole bunch of tests were
failing as they didn't clean up everything. However I didn't (yet) add
QUnit.expectJqData calls all over the place because in most if not all of
these cases it is valid data storage. For example in test "data()", there
will be an internal data key for "parsedAttrs". This particular test isn't
intending to test for memory leaks, so therefor I made the new discovery
system only push failures when the test contains at least 1 call to
QUnit.expectJqData.
When not, we'll assume that whatever data is being stored is acceptable
because the relevant elements still exist in the DOM anyway (QUnit.reset
will remove the elements and clean up the data automatically).
I did add a "Always check jQuery.data" mode in the test suite that will
trigger it everywhere. Maybe one day we'll include a call to everywhere,
but for now I'm keeping the status quo: Only consider data left in storage
to be a problem if the test says so ("opt-in").
* Had to move #fx-tests inside the fixture because ".remove()" test would
otherwise remove stuff permanently and cause random other tests to fail
as "#hide div" would yield an empty collection.
(Why wasn't this in the fixture in the first place?)
As a result moving fx-tests into the fixture a whole bunch of tests failed
that relied on arbitrary stuff about the document-wide or fixture-wide
state (e.g. number of divs etc.). So I had to adjust various tests to
limit their sample data to not be so variable and unlimited...
* Moved out tests for expando cleanup into a separate test.
* Fixed implied global variable 'pass' in effects.js that was causing
"TypeError: boolean is not a function" in *UNRELATED* dimensions.js that
uses a global variable "pass = function () {};" ...
* Removed spurious calls to _removeData. The new test exposed various failures
e.g. where div[0] isn't being assigned any data anyway.
(queue.js and attributes.js toggleClass).
* Removed spurious clean up at the bottom of test() functions that are
already covered by the teardown (calling QUnit.reset or removeClass to
supposedly undo any changes).
* Documented the parentheses-less magic line in toggleClass. It appeared that
it would always keep the current class name if there was any (since the
assignment started with "this.className || ...".
Adding parentheses + spacing is 8 bytes (though only 1 in gzip apparently).
Only added the comment for now, though I prefer clarity with logical
operators, I'd rather not face the yayMinPD[1] in this test-related commit.
* Updated QUnit urlConfig to the new format (raw string is deprecated).
* Clean up odd htmlentities in test titles, QUnit escapes this.
(^\s+test\(.*)(>\;) → $1>
(^\s+test\(.*)(<\;) → $1<
[1] jQuery MinJsGz Release Police Department (do the same, download less)
2012-10-17 08:33:47 +00:00
test ( "show() basic" , 2 , function ( ) {
var div ,
hiddendiv = jQuery ( "div.hidden" ) ;
2010-10-26 21:37:44 +00:00
2010-10-27 18:35:26 +00:00
hiddendiv . hide ( ) . show ( ) ;
2011-11-06 20:27:42 +00:00
equal ( hiddendiv . css ( "display" ) , "block" , "Make sure a pre-hidden div is visible." ) ;
2010-10-27 18:35:26 +00:00
Implement expectation test instead of using _removeData. Close gh-997.
* Removed inline usage of QUnit.reset() because it is messing with the
expectation model as reset does .empty() which does a recursive cleanData
on everything in #qunit-fixture, so any expectJqData above .reset() would
fail negatively.
Instead of calling reset inline, either updated the following assertions to
take previous assertions' state into account, or broke the test() up into
2 tests at the point where it would call QUnit.reset.
* After introducing the new memory leak discovery a whole bunch of tests were
failing as they didn't clean up everything. However I didn't (yet) add
QUnit.expectJqData calls all over the place because in most if not all of
these cases it is valid data storage. For example in test "data()", there
will be an internal data key for "parsedAttrs". This particular test isn't
intending to test for memory leaks, so therefor I made the new discovery
system only push failures when the test contains at least 1 call to
QUnit.expectJqData.
When not, we'll assume that whatever data is being stored is acceptable
because the relevant elements still exist in the DOM anyway (QUnit.reset
will remove the elements and clean up the data automatically).
I did add a "Always check jQuery.data" mode in the test suite that will
trigger it everywhere. Maybe one day we'll include a call to everywhere,
but for now I'm keeping the status quo: Only consider data left in storage
to be a problem if the test says so ("opt-in").
* Had to move #fx-tests inside the fixture because ".remove()" test would
otherwise remove stuff permanently and cause random other tests to fail
as "#hide div" would yield an empty collection.
(Why wasn't this in the fixture in the first place?)
As a result moving fx-tests into the fixture a whole bunch of tests failed
that relied on arbitrary stuff about the document-wide or fixture-wide
state (e.g. number of divs etc.). So I had to adjust various tests to
limit their sample data to not be so variable and unlimited...
* Moved out tests for expando cleanup into a separate test.
* Fixed implied global variable 'pass' in effects.js that was causing
"TypeError: boolean is not a function" in *UNRELATED* dimensions.js that
uses a global variable "pass = function () {};" ...
* Removed spurious calls to _removeData. The new test exposed various failures
e.g. where div[0] isn't being assigned any data anyway.
(queue.js and attributes.js toggleClass).
* Removed spurious clean up at the bottom of test() functions that are
already covered by the teardown (calling QUnit.reset or removeClass to
supposedly undo any changes).
* Documented the parentheses-less magic line in toggleClass. It appeared that
it would always keep the current class name if there was any (since the
assignment started with "this.className || ...".
Adding parentheses + spacing is 8 bytes (though only 1 in gzip apparently).
Only added the comment for now, though I prefer clarity with logical
operators, I'd rather not face the yayMinPD[1] in this test-related commit.
* Updated QUnit urlConfig to the new format (raw string is deprecated).
* Clean up odd htmlentities in test titles, QUnit escapes this.
(^\s+test\(.*)(>\;) → $1>
(^\s+test\(.*)(<\;) → $1<
[1] jQuery MinJsGz Release Police Department (do the same, download less)
2012-10-17 08:33:47 +00:00
div = jQuery ( "<div>" ) . hide ( ) . appendTo ( "#qunit-fixture" ) . show ( ) ;
2010-11-03 22:59:55 +00:00
equal ( div . css ( "display" ) , "block" , "Make sure pre-hidden divs show" ) ;
Implement expectation test instead of using _removeData. Close gh-997.
* Removed inline usage of QUnit.reset() because it is messing with the
expectation model as reset does .empty() which does a recursive cleanData
on everything in #qunit-fixture, so any expectJqData above .reset() would
fail negatively.
Instead of calling reset inline, either updated the following assertions to
take previous assertions' state into account, or broke the test() up into
2 tests at the point where it would call QUnit.reset.
* After introducing the new memory leak discovery a whole bunch of tests were
failing as they didn't clean up everything. However I didn't (yet) add
QUnit.expectJqData calls all over the place because in most if not all of
these cases it is valid data storage. For example in test "data()", there
will be an internal data key for "parsedAttrs". This particular test isn't
intending to test for memory leaks, so therefor I made the new discovery
system only push failures when the test contains at least 1 call to
QUnit.expectJqData.
When not, we'll assume that whatever data is being stored is acceptable
because the relevant elements still exist in the DOM anyway (QUnit.reset
will remove the elements and clean up the data automatically).
I did add a "Always check jQuery.data" mode in the test suite that will
trigger it everywhere. Maybe one day we'll include a call to everywhere,
but for now I'm keeping the status quo: Only consider data left in storage
to be a problem if the test says so ("opt-in").
* Had to move #fx-tests inside the fixture because ".remove()" test would
otherwise remove stuff permanently and cause random other tests to fail
as "#hide div" would yield an empty collection.
(Why wasn't this in the fixture in the first place?)
As a result moving fx-tests into the fixture a whole bunch of tests failed
that relied on arbitrary stuff about the document-wide or fixture-wide
state (e.g. number of divs etc.). So I had to adjust various tests to
limit their sample data to not be so variable and unlimited...
* Moved out tests for expando cleanup into a separate test.
* Fixed implied global variable 'pass' in effects.js that was causing
"TypeError: boolean is not a function" in *UNRELATED* dimensions.js that
uses a global variable "pass = function () {};" ...
* Removed spurious calls to _removeData. The new test exposed various failures
e.g. where div[0] isn't being assigned any data anyway.
(queue.js and attributes.js toggleClass).
* Removed spurious clean up at the bottom of test() functions that are
already covered by the teardown (calling QUnit.reset or removeClass to
supposedly undo any changes).
* Documented the parentheses-less magic line in toggleClass. It appeared that
it would always keep the current class name if there was any (since the
assignment started with "this.className || ...".
Adding parentheses + spacing is 8 bytes (though only 1 in gzip apparently).
Only added the comment for now, though I prefer clarity with logical
operators, I'd rather not face the yayMinPD[1] in this test-related commit.
* Updated QUnit urlConfig to the new format (raw string is deprecated).
* Clean up odd htmlentities in test titles, QUnit escapes this.
(^\s+test\(.*)(>\;) → $1>
(^\s+test\(.*)(<\;) → $1<
[1] jQuery MinJsGz Release Police Department (do the same, download less)
2012-10-17 08:33:47 +00:00
// Clean up the detached node
div . remove ( ) ;
2010-10-27 18:35:26 +00:00
Implement expectation test instead of using _removeData. Close gh-997.
* Removed inline usage of QUnit.reset() because it is messing with the
expectation model as reset does .empty() which does a recursive cleanData
on everything in #qunit-fixture, so any expectJqData above .reset() would
fail negatively.
Instead of calling reset inline, either updated the following assertions to
take previous assertions' state into account, or broke the test() up into
2 tests at the point where it would call QUnit.reset.
* After introducing the new memory leak discovery a whole bunch of tests were
failing as they didn't clean up everything. However I didn't (yet) add
QUnit.expectJqData calls all over the place because in most if not all of
these cases it is valid data storage. For example in test "data()", there
will be an internal data key for "parsedAttrs". This particular test isn't
intending to test for memory leaks, so therefor I made the new discovery
system only push failures when the test contains at least 1 call to
QUnit.expectJqData.
When not, we'll assume that whatever data is being stored is acceptable
because the relevant elements still exist in the DOM anyway (QUnit.reset
will remove the elements and clean up the data automatically).
I did add a "Always check jQuery.data" mode in the test suite that will
trigger it everywhere. Maybe one day we'll include a call to everywhere,
but for now I'm keeping the status quo: Only consider data left in storage
to be a problem if the test says so ("opt-in").
* Had to move #fx-tests inside the fixture because ".remove()" test would
otherwise remove stuff permanently and cause random other tests to fail
as "#hide div" would yield an empty collection.
(Why wasn't this in the fixture in the first place?)
As a result moving fx-tests into the fixture a whole bunch of tests failed
that relied on arbitrary stuff about the document-wide or fixture-wide
state (e.g. number of divs etc.). So I had to adjust various tests to
limit their sample data to not be so variable and unlimited...
* Moved out tests for expando cleanup into a separate test.
* Fixed implied global variable 'pass' in effects.js that was causing
"TypeError: boolean is not a function" in *UNRELATED* dimensions.js that
uses a global variable "pass = function () {};" ...
* Removed spurious calls to _removeData. The new test exposed various failures
e.g. where div[0] isn't being assigned any data anyway.
(queue.js and attributes.js toggleClass).
* Removed spurious clean up at the bottom of test() functions that are
already covered by the teardown (calling QUnit.reset or removeClass to
supposedly undo any changes).
* Documented the parentheses-less magic line in toggleClass. It appeared that
it would always keep the current class name if there was any (since the
assignment started with "this.className || ...".
Adding parentheses + spacing is 8 bytes (though only 1 in gzip apparently).
Only added the comment for now, though I prefer clarity with logical
operators, I'd rather not face the yayMinPD[1] in this test-related commit.
* Updated QUnit urlConfig to the new format (raw string is deprecated).
* Clean up odd htmlentities in test titles, QUnit escapes this.
(^\s+test\(.*)(>\;) → $1>
(^\s+test\(.*)(<\;) → $1<
[1] jQuery MinJsGz Release Police Department (do the same, download less)
2012-10-17 08:33:47 +00:00
QUnit . expectJqData ( hiddendiv , "olddisplay" ) ;
} ) ;
test ( "show()" , 27 , function ( ) {
var div ,
hiddendiv = jQuery ( "div.hidden" ) ;
2010-10-27 18:35:26 +00:00
2010-10-26 21:37:44 +00:00
equal ( jQuery . css ( hiddendiv [ 0 ] , "display" ) , "none" , "hiddendiv is display: none" ) ;
hiddendiv . css ( "display" , "block" ) ;
equal ( jQuery . css ( hiddendiv [ 0 ] , "display" ) , "block" , "hiddendiv is display: block" ) ;
hiddendiv . show ( ) ;
equal ( jQuery . css ( hiddendiv [ 0 ] , "display" ) , "block" , "hiddendiv is display: block" ) ;
hiddendiv . css ( "display" , "" ) ;
Implement expectation test instead of using _removeData. Close gh-997.
* Removed inline usage of QUnit.reset() because it is messing with the
expectation model as reset does .empty() which does a recursive cleanData
on everything in #qunit-fixture, so any expectJqData above .reset() would
fail negatively.
Instead of calling reset inline, either updated the following assertions to
take previous assertions' state into account, or broke the test() up into
2 tests at the point where it would call QUnit.reset.
* After introducing the new memory leak discovery a whole bunch of tests were
failing as they didn't clean up everything. However I didn't (yet) add
QUnit.expectJqData calls all over the place because in most if not all of
these cases it is valid data storage. For example in test "data()", there
will be an internal data key for "parsedAttrs". This particular test isn't
intending to test for memory leaks, so therefor I made the new discovery
system only push failures when the test contains at least 1 call to
QUnit.expectJqData.
When not, we'll assume that whatever data is being stored is acceptable
because the relevant elements still exist in the DOM anyway (QUnit.reset
will remove the elements and clean up the data automatically).
I did add a "Always check jQuery.data" mode in the test suite that will
trigger it everywhere. Maybe one day we'll include a call to everywhere,
but for now I'm keeping the status quo: Only consider data left in storage
to be a problem if the test says so ("opt-in").
* Had to move #fx-tests inside the fixture because ".remove()" test would
otherwise remove stuff permanently and cause random other tests to fail
as "#hide div" would yield an empty collection.
(Why wasn't this in the fixture in the first place?)
As a result moving fx-tests into the fixture a whole bunch of tests failed
that relied on arbitrary stuff about the document-wide or fixture-wide
state (e.g. number of divs etc.). So I had to adjust various tests to
limit their sample data to not be so variable and unlimited...
* Moved out tests for expando cleanup into a separate test.
* Fixed implied global variable 'pass' in effects.js that was causing
"TypeError: boolean is not a function" in *UNRELATED* dimensions.js that
uses a global variable "pass = function () {};" ...
* Removed spurious calls to _removeData. The new test exposed various failures
e.g. where div[0] isn't being assigned any data anyway.
(queue.js and attributes.js toggleClass).
* Removed spurious clean up at the bottom of test() functions that are
already covered by the teardown (calling QUnit.reset or removeClass to
supposedly undo any changes).
* Documented the parentheses-less magic line in toggleClass. It appeared that
it would always keep the current class name if there was any (since the
assignment started with "this.className || ...".
Adding parentheses + spacing is 8 bytes (though only 1 in gzip apparently).
Only added the comment for now, though I prefer clarity with logical
operators, I'd rather not face the yayMinPD[1] in this test-related commit.
* Updated QUnit urlConfig to the new format (raw string is deprecated).
* Clean up odd htmlentities in test titles, QUnit escapes this.
(^\s+test\(.*)(>\;) → $1>
(^\s+test\(.*)(<\;) → $1<
[1] jQuery MinJsGz Release Police Department (do the same, download less)
2012-10-17 08:33:47 +00:00
var displaysActual = [ ] ,
displaysExpected = [ ] ;
div = jQuery ( "#fx-queue div" ) . slice ( 0 , 4 ) ;
div . show ( ) . each ( function ( ) {
notEqual ( this . style . display , "none" , "don't change any <div> with display block" ) ;
2009-03-18 21:15:38 +00:00
} ) ;
2010-01-19 23:27:20 +00:00
var speeds = {
2011-02-13 22:02:14 +00:00
"null speed" : null ,
"undefined speed" : undefined ,
"false speed" : false
2010-01-19 23:27:20 +00:00
} ;
jQuery . each ( speeds , function ( name , speed ) {
Implement expectation test instead of using _removeData. Close gh-997.
* Removed inline usage of QUnit.reset() because it is messing with the
expectation model as reset does .empty() which does a recursive cleanData
on everything in #qunit-fixture, so any expectJqData above .reset() would
fail negatively.
Instead of calling reset inline, either updated the following assertions to
take previous assertions' state into account, or broke the test() up into
2 tests at the point where it would call QUnit.reset.
* After introducing the new memory leak discovery a whole bunch of tests were
failing as they didn't clean up everything. However I didn't (yet) add
QUnit.expectJqData calls all over the place because in most if not all of
these cases it is valid data storage. For example in test "data()", there
will be an internal data key for "parsedAttrs". This particular test isn't
intending to test for memory leaks, so therefor I made the new discovery
system only push failures when the test contains at least 1 call to
QUnit.expectJqData.
When not, we'll assume that whatever data is being stored is acceptable
because the relevant elements still exist in the DOM anyway (QUnit.reset
will remove the elements and clean up the data automatically).
I did add a "Always check jQuery.data" mode in the test suite that will
trigger it everywhere. Maybe one day we'll include a call to everywhere,
but for now I'm keeping the status quo: Only consider data left in storage
to be a problem if the test says so ("opt-in").
* Had to move #fx-tests inside the fixture because ".remove()" test would
otherwise remove stuff permanently and cause random other tests to fail
as "#hide div" would yield an empty collection.
(Why wasn't this in the fixture in the first place?)
As a result moving fx-tests into the fixture a whole bunch of tests failed
that relied on arbitrary stuff about the document-wide or fixture-wide
state (e.g. number of divs etc.). So I had to adjust various tests to
limit their sample data to not be so variable and unlimited...
* Moved out tests for expando cleanup into a separate test.
* Fixed implied global variable 'pass' in effects.js that was causing
"TypeError: boolean is not a function" in *UNRELATED* dimensions.js that
uses a global variable "pass = function () {};" ...
* Removed spurious calls to _removeData. The new test exposed various failures
e.g. where div[0] isn't being assigned any data anyway.
(queue.js and attributes.js toggleClass).
* Removed spurious clean up at the bottom of test() functions that are
already covered by the teardown (calling QUnit.reset or removeClass to
supposedly undo any changes).
* Documented the parentheses-less magic line in toggleClass. It appeared that
it would always keep the current class name if there was any (since the
assignment started with "this.className || ...".
Adding parentheses + spacing is 8 bytes (though only 1 in gzip apparently).
Only added the comment for now, though I prefer clarity with logical
operators, I'd rather not face the yayMinPD[1] in this test-related commit.
* Updated QUnit urlConfig to the new format (raw string is deprecated).
* Clean up odd htmlentities in test titles, QUnit escapes this.
(^\s+test\(.*)(>\;) → $1>
(^\s+test\(.*)(<\;) → $1<
[1] jQuery MinJsGz Release Police Department (do the same, download less)
2012-10-17 08:33:47 +00:00
var pass = true ;
2011-02-13 22:02:14 +00:00
div . hide ( ) . show ( speed ) . each ( function ( ) {
2012-06-21 19:30:24 +00:00
if ( this . style . display == "none" ) {
pass = false ;
}
2011-02-13 22:02:14 +00:00
} ) ;
ok ( pass , "Show with " + name ) ;
} ) ;
2010-01-19 23:27:20 +00:00
jQuery . each ( speeds , function ( name , speed ) {
Implement expectation test instead of using _removeData. Close gh-997.
* Removed inline usage of QUnit.reset() because it is messing with the
expectation model as reset does .empty() which does a recursive cleanData
on everything in #qunit-fixture, so any expectJqData above .reset() would
fail negatively.
Instead of calling reset inline, either updated the following assertions to
take previous assertions' state into account, or broke the test() up into
2 tests at the point where it would call QUnit.reset.
* After introducing the new memory leak discovery a whole bunch of tests were
failing as they didn't clean up everything. However I didn't (yet) add
QUnit.expectJqData calls all over the place because in most if not all of
these cases it is valid data storage. For example in test "data()", there
will be an internal data key for "parsedAttrs". This particular test isn't
intending to test for memory leaks, so therefor I made the new discovery
system only push failures when the test contains at least 1 call to
QUnit.expectJqData.
When not, we'll assume that whatever data is being stored is acceptable
because the relevant elements still exist in the DOM anyway (QUnit.reset
will remove the elements and clean up the data automatically).
I did add a "Always check jQuery.data" mode in the test suite that will
trigger it everywhere. Maybe one day we'll include a call to everywhere,
but for now I'm keeping the status quo: Only consider data left in storage
to be a problem if the test says so ("opt-in").
* Had to move #fx-tests inside the fixture because ".remove()" test would
otherwise remove stuff permanently and cause random other tests to fail
as "#hide div" would yield an empty collection.
(Why wasn't this in the fixture in the first place?)
As a result moving fx-tests into the fixture a whole bunch of tests failed
that relied on arbitrary stuff about the document-wide or fixture-wide
state (e.g. number of divs etc.). So I had to adjust various tests to
limit their sample data to not be so variable and unlimited...
* Moved out tests for expando cleanup into a separate test.
* Fixed implied global variable 'pass' in effects.js that was causing
"TypeError: boolean is not a function" in *UNRELATED* dimensions.js that
uses a global variable "pass = function () {};" ...
* Removed spurious calls to _removeData. The new test exposed various failures
e.g. where div[0] isn't being assigned any data anyway.
(queue.js and attributes.js toggleClass).
* Removed spurious clean up at the bottom of test() functions that are
already covered by the teardown (calling QUnit.reset or removeClass to
supposedly undo any changes).
* Documented the parentheses-less magic line in toggleClass. It appeared that
it would always keep the current class name if there was any (since the
assignment started with "this.className || ...".
Adding parentheses + spacing is 8 bytes (though only 1 in gzip apparently).
Only added the comment for now, though I prefer clarity with logical
operators, I'd rather not face the yayMinPD[1] in this test-related commit.
* Updated QUnit urlConfig to the new format (raw string is deprecated).
* Clean up odd htmlentities in test titles, QUnit escapes this.
(^\s+test\(.*)(>\;) → $1>
(^\s+test\(.*)(<\;) → $1<
[1] jQuery MinJsGz Release Police Department (do the same, download less)
2012-10-17 08:33:47 +00:00
var pass = true ;
div . hide ( ) . show ( speed , function ( ) {
2010-01-19 23:27:20 +00:00
pass = false ;
} ) ;
2010-01-21 15:18:54 +00:00
ok ( pass , "Show with " + name + " does not call animate callback" ) ;
2009-11-12 23:08:33 +00:00
} ) ;
Implement expectation test instead of using _removeData. Close gh-997.
* Removed inline usage of QUnit.reset() because it is messing with the
expectation model as reset does .empty() which does a recursive cleanData
on everything in #qunit-fixture, so any expectJqData above .reset() would
fail negatively.
Instead of calling reset inline, either updated the following assertions to
take previous assertions' state into account, or broke the test() up into
2 tests at the point where it would call QUnit.reset.
* After introducing the new memory leak discovery a whole bunch of tests were
failing as they didn't clean up everything. However I didn't (yet) add
QUnit.expectJqData calls all over the place because in most if not all of
these cases it is valid data storage. For example in test "data()", there
will be an internal data key for "parsedAttrs". This particular test isn't
intending to test for memory leaks, so therefor I made the new discovery
system only push failures when the test contains at least 1 call to
QUnit.expectJqData.
When not, we'll assume that whatever data is being stored is acceptable
because the relevant elements still exist in the DOM anyway (QUnit.reset
will remove the elements and clean up the data automatically).
I did add a "Always check jQuery.data" mode in the test suite that will
trigger it everywhere. Maybe one day we'll include a call to everywhere,
but for now I'm keeping the status quo: Only consider data left in storage
to be a problem if the test says so ("opt-in").
* Had to move #fx-tests inside the fixture because ".remove()" test would
otherwise remove stuff permanently and cause random other tests to fail
as "#hide div" would yield an empty collection.
(Why wasn't this in the fixture in the first place?)
As a result moving fx-tests into the fixture a whole bunch of tests failed
that relied on arbitrary stuff about the document-wide or fixture-wide
state (e.g. number of divs etc.). So I had to adjust various tests to
limit their sample data to not be so variable and unlimited...
* Moved out tests for expando cleanup into a separate test.
* Fixed implied global variable 'pass' in effects.js that was causing
"TypeError: boolean is not a function" in *UNRELATED* dimensions.js that
uses a global variable "pass = function () {};" ...
* Removed spurious calls to _removeData. The new test exposed various failures
e.g. where div[0] isn't being assigned any data anyway.
(queue.js and attributes.js toggleClass).
* Removed spurious clean up at the bottom of test() functions that are
already covered by the teardown (calling QUnit.reset or removeClass to
supposedly undo any changes).
* Documented the parentheses-less magic line in toggleClass. It appeared that
it would always keep the current class name if there was any (since the
assignment started with "this.className || ...".
Adding parentheses + spacing is 8 bytes (though only 1 in gzip apparently).
Only added the comment for now, though I prefer clarity with logical
operators, I'd rather not face the yayMinPD[1] in this test-related commit.
* Updated QUnit urlConfig to the new format (raw string is deprecated).
* Clean up odd htmlentities in test titles, QUnit escapes this.
(^\s+test\(.*)(>\;) → $1>
(^\s+test\(.*)(<\;) → $1<
[1] jQuery MinJsGz Release Police Department (do the same, download less)
2012-10-17 08:33:47 +00:00
// Tolerate data from show()/hide()
QUnit . expectJqData ( div , "olddisplay" ) ;
2010-10-05 19:53:35 +00:00
// #show-tests * is set display: none in CSS
2011-04-17 06:43:57 +00:00
jQuery ( "#qunit-fixture" ) . append ( "<div id='show-tests'><div><p><a href='#'></a></p><code></code><pre></pre><span></span></div><table><thead><tr><th></th></tr></thead><tbody><tr><td></td></tr></tbody></table><ul><li></li></ul></div><table id='test-table'></table>" ) ;
2010-12-30 06:34:48 +00:00
2010-10-09 01:29:41 +00:00
var old = jQuery ( "#test-table" ) . show ( ) . css ( "display" ) !== "table" ;
jQuery ( "#test-table" ) . remove ( ) ;
2009-03-18 21:15:38 +00:00
var test = {
"div" : "block" ,
"p" : "block" ,
"a" : "inline" ,
"code" : "inline" ,
"pre" : "block" ,
"span" : "inline" ,
"table" : old ? "block" : "table" ,
"thead" : old ? "block" : "table-header-group" ,
"tbody" : old ? "block" : "table-row-group" ,
"tr" : old ? "block" : "table-row" ,
"th" : old ? "block" : "table-cell" ,
"td" : old ? "block" : "table-cell" ,
"ul" : "block" ,
"li" : old ? "block" : "list-item"
} ;
jQuery . each ( test , function ( selector , expected ) {
var elem = jQuery ( selector , "#show-tests" ) . show ( ) ;
2011-11-06 20:27:42 +00:00
equal ( elem . css ( "display" ) , expected , "Show using correct display type for " + selector ) ;
2009-03-18 21:15:38 +00:00
} ) ;
2011-04-17 18:07:42 +00:00
2012-07-02 15:30:22 +00:00
jQuery ( "#show-tests" ) . remove ( ) ;
2011-04-17 18:07:42 +00:00
// Make sure that showing or hiding a text node doesn't cause an error
jQuery ( "<div>test</div> text <span>test</span>" ) . show ( ) . remove ( ) ;
jQuery ( "<div>test</div> text <span>test</span>" ) . hide ( ) . remove ( ) ;
2009-03-18 21:15:38 +00:00
} ) ;
2009-12-06 02:06:14 +00:00
test ( "show(Number) - other displays" , function ( ) {
expect ( 15 ) ;
2010-07-28 15:19:01 +00:00
QUnit . reset ( ) ;
2009-12-06 02:06:14 +00:00
stop ( ) ;
2010-10-05 19:53:35 +00:00
// #show-tests * is set display: none in CSS
2011-04-17 06:43:57 +00:00
jQuery ( "#qunit-fixture" ) . append ( "<div id='show-tests'><div><p><a href='#'></a></p><code></code><pre></pre><span></span></div><table><thead><tr><th></th></tr></thead><tbody><tr><td></td></tr></tbody></table><ul><li></li></ul></div><table id='test-table'></table>" ) ;
2009-12-06 02:06:14 +00:00
2010-10-09 01:29:41 +00:00
var old = jQuery ( "#test-table" ) . show ( ) . css ( "display" ) !== "table" ,
2009-12-06 02:06:14 +00:00
num = 0 ;
2010-10-09 01:29:41 +00:00
jQuery ( "#test-table" ) . remove ( ) ;
2009-12-06 02:06:14 +00:00
var test = {
"div" : "block" ,
"p" : "block" ,
"a" : "inline" ,
"code" : "inline" ,
"pre" : "block" ,
"span" : "inline" ,
"table" : old ? "block" : "table" ,
"thead" : old ? "block" : "table-header-group" ,
"tbody" : old ? "block" : "table-row-group" ,
"tr" : old ? "block" : "table-row" ,
"th" : old ? "block" : "table-cell" ,
"td" : old ? "block" : "table-cell" ,
"ul" : "block" ,
"li" : old ? "block" : "list-item"
} ;
jQuery . each ( test , function ( selector , expected ) {
2010-10-09 01:29:41 +00:00
var elem = jQuery ( selector , "#show-tests" ) . show ( 1 , function ( ) {
2011-11-06 20:27:42 +00:00
equal ( elem . css ( "display" ) , expected , "Show using correct display type for " + selector ) ;
2009-12-06 02:06:14 +00:00
if ( ++ num === 15 ) {
start ( ) ;
}
} ) ;
} ) ;
2012-07-02 15:30:22 +00:00
jQuery ( "#show-tests" ) . remove ( ) ;
2009-12-06 02:06:14 +00:00
} ) ;
2011-02-13 22:02:14 +00:00
// Supports #7397
2010-11-09 23:06:33 +00:00
test ( "Persist correct display value" , function ( ) {
2011-02-13 22:02:14 +00:00
expect ( 3 ) ;
2010-11-09 23:06:33 +00:00
QUnit . reset ( ) ;
stop ( ) ;
// #show-tests * is set display: none in CSS
2011-04-17 06:43:57 +00:00
jQuery ( "#qunit-fixture" ) . append ( "<div id='show-tests'><span style='position:absolute;'>foo</span></div>" ) ;
2010-12-30 06:34:48 +00:00
var $span = jQuery ( "#show-tests span" ) ,
2011-02-13 22:02:14 +00:00
displayNone = $span . css ( "display" ) ,
2011-04-12 08:47:46 +00:00
display = "" , num = 0 ;
2010-11-09 23:06:33 +00:00
2011-02-13 22:02:14 +00:00
$span . show ( ) ;
2010-12-30 06:34:48 +00:00
2011-02-13 22:02:14 +00:00
display = $span . css ( "display" ) ;
2010-12-30 06:34:48 +00:00
2011-02-13 22:02:14 +00:00
$span . hide ( ) ;
2010-12-30 06:34:48 +00:00
2011-02-13 22:02:14 +00:00
$span . fadeIn ( 100 , function ( ) {
2011-11-06 20:27:42 +00:00
equal ( $span . css ( "display" ) , display , "Expecting display: " + display ) ;
2011-02-13 22:02:14 +00:00
$span . fadeOut ( 100 , function ( ) {
2011-11-06 20:27:42 +00:00
equal ( $span . css ( "display" ) , displayNone , "Expecting display: " + displayNone ) ;
2011-02-13 22:02:14 +00:00
$span . fadeIn ( 100 , function ( ) {
2011-11-06 20:27:42 +00:00
equal ( $span . css ( "display" ) , display , "Expecting display: " + display ) ;
2011-02-13 22:02:14 +00:00
start ( ) ;
} ) ;
} ) ;
} ) ;
Implement expectation test instead of using _removeData. Close gh-997.
* Removed inline usage of QUnit.reset() because it is messing with the
expectation model as reset does .empty() which does a recursive cleanData
on everything in #qunit-fixture, so any expectJqData above .reset() would
fail negatively.
Instead of calling reset inline, either updated the following assertions to
take previous assertions' state into account, or broke the test() up into
2 tests at the point where it would call QUnit.reset.
* After introducing the new memory leak discovery a whole bunch of tests were
failing as they didn't clean up everything. However I didn't (yet) add
QUnit.expectJqData calls all over the place because in most if not all of
these cases it is valid data storage. For example in test "data()", there
will be an internal data key for "parsedAttrs". This particular test isn't
intending to test for memory leaks, so therefor I made the new discovery
system only push failures when the test contains at least 1 call to
QUnit.expectJqData.
When not, we'll assume that whatever data is being stored is acceptable
because the relevant elements still exist in the DOM anyway (QUnit.reset
will remove the elements and clean up the data automatically).
I did add a "Always check jQuery.data" mode in the test suite that will
trigger it everywhere. Maybe one day we'll include a call to everywhere,
but for now I'm keeping the status quo: Only consider data left in storage
to be a problem if the test says so ("opt-in").
* Had to move #fx-tests inside the fixture because ".remove()" test would
otherwise remove stuff permanently and cause random other tests to fail
as "#hide div" would yield an empty collection.
(Why wasn't this in the fixture in the first place?)
As a result moving fx-tests into the fixture a whole bunch of tests failed
that relied on arbitrary stuff about the document-wide or fixture-wide
state (e.g. number of divs etc.). So I had to adjust various tests to
limit their sample data to not be so variable and unlimited...
* Moved out tests for expando cleanup into a separate test.
* Fixed implied global variable 'pass' in effects.js that was causing
"TypeError: boolean is not a function" in *UNRELATED* dimensions.js that
uses a global variable "pass = function () {};" ...
* Removed spurious calls to _removeData. The new test exposed various failures
e.g. where div[0] isn't being assigned any data anyway.
(queue.js and attributes.js toggleClass).
* Removed spurious clean up at the bottom of test() functions that are
already covered by the teardown (calling QUnit.reset or removeClass to
supposedly undo any changes).
* Documented the parentheses-less magic line in toggleClass. It appeared that
it would always keep the current class name if there was any (since the
assignment started with "this.className || ...".
Adding parentheses + spacing is 8 bytes (though only 1 in gzip apparently).
Only added the comment for now, though I prefer clarity with logical
operators, I'd rather not face the yayMinPD[1] in this test-related commit.
* Updated QUnit urlConfig to the new format (raw string is deprecated).
* Clean up odd htmlentities in test titles, QUnit escapes this.
(^\s+test\(.*)(>\;) → $1>
(^\s+test\(.*)(<\;) → $1<
[1] jQuery MinJsGz Release Police Department (do the same, download less)
2012-10-17 08:33:47 +00:00
QUnit . expectJqData ( $span , "olddisplay" ) ;
2010-11-09 23:06:33 +00:00
} ) ;
2011-04-12 15:48:07 +00:00
2007-03-25 18:06:18 +00:00
test ( "animate(Hash, Object, Function)" , function ( ) {
2007-12-20 20:40:20 +00:00
expect ( 1 ) ;
2006-11-18 13:37:01 +00:00
stop ( ) ;
2011-04-12 08:47:46 +00:00
var hash = { opacity : "show" } ;
2008-05-28 23:18:25 +00:00
var hashCopy = jQuery . extend ( { } , hash ) ;
2011-04-12 08:47:46 +00:00
jQuery ( "#foo" ) . animate ( hash , 0 , function ( ) {
2011-11-06 20:27:42 +00:00
equal ( hash . opacity , hashCopy . opacity , "Check if animate changed the hash parameter" ) ;
2007-12-20 20:40:20 +00:00
start ( ) ;
2007-12-07 01:52:21 +00:00
} ) ;
2007-01-09 17:15:22 +00:00
} ) ;
2009-12-05 05:10:19 +00:00
test ( "animate negative height" , function ( ) {
expect ( 1 ) ;
stop ( ) ;
jQuery ( "#foo" ) . animate ( { height : - 100 } , 100 , function ( ) {
2011-11-06 20:27:42 +00:00
equal ( this . offsetHeight , 0 , "Verify height." ) ;
2009-12-05 05:10:19 +00:00
start ( ) ;
} ) ;
} ) ;
2012-04-05 03:30:13 +00:00
test ( "animate negative margin" , function ( ) {
expect ( 1 ) ;
stop ( ) ;
2012-07-05 19:52:13 +00:00
jQuery ( "#foo" ) . animate ( { "marginTop" : - 100 } , 100 , function ( ) {
2012-04-05 03:30:13 +00:00
equal ( jQuery ( this ) . css ( "marginTop" ) , "-100px" , "Verify margin." ) ;
start ( ) ;
} ) ;
} ) ;
2012-06-12 01:01:23 +00:00
test ( "animate negative margin with px" , function ( ) {
expect ( 1 ) ;
stop ( ) ;
jQuery ( "#foo" ) . animate ( { marginTop : "-100px" } , 100 , function ( ) {
equal ( jQuery ( this ) . css ( "marginTop" ) , "-100px" , "Verify margin." ) ;
start ( ) ;
} ) ;
} ) ;
2012-03-02 03:31:17 +00:00
test ( "animate negative padding" , function ( ) {
expect ( 1 ) ;
stop ( ) ;
2012-07-05 19:52:13 +00:00
jQuery ( "#foo" ) . animate ( { "paddingBottom" : - 100 } , 100 , function ( ) {
2012-03-02 03:31:17 +00:00
equal ( jQuery ( this ) . css ( "paddingBottom" ) , "0px" , "Verify paddingBottom." ) ;
start ( ) ;
} ) ;
} ) ;
2010-10-05 19:53:35 +00:00
test ( "animate block as inline width/height" , function ( ) {
2010-10-05 18:28:43 +00:00
expect ( 3 ) ;
2010-10-15 01:48:03 +00:00
var span = jQuery ( "<span>" ) . css ( "display" , "inline-block" ) . appendTo ( "body" ) ,
expected = span . css ( "display" ) ;
2010-12-30 06:34:48 +00:00
2010-10-15 01:48:03 +00:00
span . remove ( ) ;
if ( jQuery . support . inlineBlockNeedsLayout || expected === "inline-block" ) {
stop ( ) ;
2011-04-12 08:47:46 +00:00
jQuery ( "#foo" ) . css ( { display : "inline" , width : "" , height : "" } ) . animate ( { width : 42 , height : 42 } , 100 , function ( ) {
2011-11-06 20:27:42 +00:00
equal ( jQuery ( this ) . css ( "display" ) , jQuery . support . inlineBlockNeedsLayout ? "inline" : "inline-block" , "inline-block was set on non-floated inline element when animating width/height" ) ;
equal ( this . offsetWidth , 42 , "width was animated" ) ;
equal ( this . offsetHeight , 42 , "height was animated" ) ;
2010-10-15 01:48:03 +00:00
start ( ) ;
} ) ;
// Browser doesn't support inline-block
} else {
ok ( true , "Browser doesn't support inline-block" ) ;
ok ( true , "Browser doesn't support inline-block" ) ;
ok ( true , "Browser doesn't support inline-block" ) ;
}
2010-10-05 18:28:43 +00:00
} ) ;
2010-10-05 19:53:35 +00:00
test ( "animate native inline width/height" , function ( ) {
expect ( 3 ) ;
2010-10-15 01:48:03 +00:00
var span = jQuery ( "<span>" ) . css ( "display" , "inline-block" ) . appendTo ( "body" ) ,
expected = span . css ( "display" ) ;
2010-12-30 06:34:48 +00:00
2010-10-15 01:48:03 +00:00
span . remove ( ) ;
if ( jQuery . support . inlineBlockNeedsLayout || expected === "inline-block" ) {
stop ( ) ;
2011-04-12 08:47:46 +00:00
jQuery ( "#foo" ) . css ( { display : "" , width : "" , height : "" } )
. append ( "<span>text</span>" )
. children ( "span" )
2010-10-15 01:48:03 +00:00
. animate ( { width : 42 , height : 42 } , 100 , function ( ) {
2011-11-06 20:27:42 +00:00
equal ( jQuery ( this ) . css ( "display" ) , "inline-block" , "inline-block was set on non-floated inline element when animating width/height" ) ;
equal ( this . offsetWidth , 42 , "width was animated" ) ;
equal ( this . offsetHeight , 42 , "height was animated" ) ;
2010-10-15 01:48:03 +00:00
start ( ) ;
} ) ;
// Browser doesn't support inline-block
} else {
ok ( true , "Browser doesn't support inline-block" ) ;
ok ( true , "Browser doesn't support inline-block" ) ;
ok ( true , "Browser doesn't support inline-block" ) ;
}
2010-10-05 19:53:35 +00:00
} ) ;
2010-10-05 18:28:43 +00:00
test ( "animate block width/height" , function ( ) {
expect ( 3 ) ;
stop ( ) ;
jQuery ( "#foo" ) . css ( { display : "block" , width : 20 , height : 20 } ) . animate ( { width : 42 , height : 42 } , 100 , function ( ) {
2011-11-06 20:27:42 +00:00
equal ( jQuery ( this ) . css ( "display" ) , "block" , "inline-block was not set on block element when animating width/height" ) ;
equal ( this . offsetWidth , 42 , "width was animated" ) ;
equal ( this . offsetHeight , 42 , "height was animated" ) ;
2010-10-05 18:28:43 +00:00
start ( ) ;
} ) ;
} ) ;
test ( "animate table width/height" , function ( ) {
expect ( 1 ) ;
stop ( ) ;
var displayMode = jQuery ( "#table" ) . css ( "display" ) !== "table" ? "block" : "table" ;
jQuery ( "#table" ) . animate ( { width : 42 , height : 42 } , 100 , function ( ) {
2011-11-06 20:27:42 +00:00
equal ( jQuery ( this ) . css ( "display" ) , displayMode , "display mode is correct" ) ;
2010-10-05 18:28:43 +00:00
start ( ) ;
} ) ;
} ) ;
2010-10-05 19:53:35 +00:00
test ( "animate table-row width/height" , function ( ) {
expect ( 3 ) ;
stop ( ) ;
var tr = jQuery ( "#table" )
. attr ( { "cellspacing" : 0 , "cellpadding" : 0 , "border" : 0 } )
. html ( "<tr style='height:42px;'><td style='padding:0;'><div style='width:20px;height:20px;'></div></td></tr>" )
. find ( "tr" ) ;
2011-11-06 20:27:42 +00:00
// IE<8 uses "block" instead of the correct display type
2010-10-05 19:53:35 +00:00
var displayMode = tr . css ( "display" ) !== "table-row" ? "block" : "table-row" ;
tr . animate ( { width : 10 , height : 10 } , 100 , function ( ) {
2011-11-06 20:27:42 +00:00
equal ( jQuery ( this ) . css ( "display" ) , displayMode , "display mode is correct" ) ;
equal ( this . offsetWidth , 20 , "width animated to shrink wrap point" ) ;
equal ( this . offsetHeight , 20 , "height animated to shrink wrap point" ) ;
2010-10-05 19:53:35 +00:00
start ( ) ;
} ) ;
} ) ;
2010-10-05 18:28:43 +00:00
test ( "animate table-cell width/height" , function ( ) {
expect ( 3 ) ;
stop ( ) ;
var td = jQuery ( "#table" )
. attr ( { "cellspacing" : 0 , "cellpadding" : 0 , "border" : 0 } )
2010-10-05 19:53:35 +00:00
. html ( "<tr><td style='width:42px;height:42px;padding:0;'><div style='width:20px;height:20px;'></div></td></tr>" )
2010-10-05 18:28:43 +00:00
. find ( "td" ) ;
2011-11-06 20:27:42 +00:00
// IE<8 uses "block" instead of the correct display type
2010-10-05 18:28:43 +00:00
var displayMode = td . css ( "display" ) !== "table-cell" ? "block" : "table-cell" ;
td . animate ( { width : 10 , height : 10 } , 100 , function ( ) {
2011-11-06 20:27:42 +00:00
equal ( jQuery ( this ) . css ( "display" ) , displayMode , "display mode is correct" ) ;
equal ( this . offsetWidth , 20 , "width animated to shrink wrap point" ) ;
equal ( this . offsetHeight , 20 , "height animated to shrink wrap point" ) ;
2010-10-05 18:28:43 +00:00
start ( ) ;
} ) ;
} ) ;
2011-11-07 15:46:46 +00:00
test ( "animate percentage(%) on width/height" , function ( ) {
expect ( 2 ) ;
var $div = jQuery ( "<div style='position:absolute;top:-999px;left:-999px;width:60px;height:60px;'><div style='width:50%;height:50%;'></div></div>" )
. appendTo ( "#qunit-fixture" ) . children ( "div" ) ;
stop ( ) ;
$div . animate ( { width : "25%" , height : "25%" } , 13 , function ( ) {
var $this = jQuery ( this ) ;
2012-06-05 19:29:46 +00:00
equal ( $this . css ( "width" ) , "15px" , "Width was animated to 15px rather than 25px" ) ;
equal ( $this . css ( "height" ) , "15px" , "Height was animated to 15px rather than 25px" ) ;
2011-11-07 15:46:46 +00:00
start ( ) ;
} ) ;
} ) ;
2010-10-05 18:28:43 +00:00
test ( "animate resets overflow-x and overflow-y when finished" , function ( ) {
expect ( 2 ) ;
stop ( ) ;
jQuery ( "#foo" )
. css ( { display : "block" , width : 20 , height : 20 , overflowX : "visible" , overflowY : "auto" } )
. animate ( { width : 42 , height : 42 } , 100 , function ( ) {
2011-11-06 20:27:42 +00:00
equal ( this . style . overflowX , "visible" , "overflow-x is visible" ) ;
equal ( this . style . overflowY , "auto" , "overflow-y is auto" ) ;
2010-10-05 18:28:43 +00:00
start ( ) ;
} ) ;
} ) ;
2009-07-21 20:48:29 +00:00
/* / / This test ends up being flaky depending upon the CPU load
2007-11-16 17:49:12 +00:00
test ( "animate option (queue === false)" , function ( ) {
2007-11-16 23:39:23 +00:00
expect ( 1 ) ;
stop ( ) ;
2007-11-16 17:49:12 +00:00
2007-11-16 23:39:23 +00:00
var order = [ ] ;
2008-05-28 23:18:25 +00:00
var $foo = jQuery ( "#foo" ) ;
2011-04-12 08:47:46 +00:00
$foo . animate ( { width : "100px" } , 3000 , function ( ) {
2007-11-16 23:39:23 +00:00
// should finish after unqueued animation so second
order . push ( 2 ) ;
2011-11-06 20:27:42 +00:00
deepEqual ( order , [ 1 , 2 ] , "Animations finished in the correct order" ) ;
2009-07-21 20:16:44 +00:00
start ( ) ;
2007-11-16 23:39:23 +00:00
} ) ;
2011-04-12 08:47:46 +00:00
$foo . animate ( { fontSize : "2em" } , { queue : false , duration : 10 , complete : function ( ) {
2007-11-16 23:39:23 +00:00
// short duration and out of queue so should finish first
order . push ( 1 ) ;
} } ) ;
2007-11-16 17:49:12 +00:00
} ) ;
2009-07-21 20:48:29 +00:00
* /
2007-11-16 17:49:12 +00:00
2011-09-28 15:55:29 +00:00
asyncTest ( "animate option { queue: false }" , function ( ) {
expect ( 2 ) ;
var foo = jQuery ( "#foo" ) ;
foo . animate ( {
fontSize : "2em"
} , {
queue : false ,
duration : 10 ,
complete : function ( ) {
ok ( true , "Animation Completed" ) ;
start ( ) ;
}
} ) ;
2011-11-06 20:27:42 +00:00
equal ( foo . queue ( ) . length , 0 , "Queue is empty" ) ;
2011-09-28 15:55:29 +00:00
} ) ;
2011-10-07 15:16:38 +00:00
asyncTest ( "animate option { queue: true }" , function ( ) {
expect ( 2 ) ;
var foo = jQuery ( "#foo" ) ;
foo . animate ( {
fontSize : "2em"
} , {
queue : true ,
duration : 10 ,
complete : function ( ) {
ok ( true , "Animation Completed" ) ;
start ( ) ;
}
} ) ;
notEqual ( foo . queue ( ) . length , 0 , "Default queue is not empty" ) ;
} ) ;
2011-09-19 20:08:00 +00:00
asyncTest ( "animate option { queue: 'name' }" , function ( ) {
expect ( 5 ) ;
var foo = jQuery ( "#foo" ) ,
2012-06-05 19:29:46 +00:00
origWidth = parseFloat ( foo . css ( "width" ) ) ,
2011-09-19 20:08:00 +00:00
order = [ ] ;
foo . animate ( { width : origWidth + 100 } , {
2012-10-16 14:17:14 +00:00
queue : "name" ,
2011-09-19 20:08:00 +00:00
duration : 1 ,
complete : function ( ) {
// second callback function
order . push ( 2 ) ;
2012-06-05 19:29:46 +00:00
equal ( parseFloat ( foo . css ( "width" ) ) , origWidth + 100 , "Animation ended" ) ;
2011-11-06 20:27:42 +00:00
equal ( foo . queue ( "name" ) . length , 1 , "Queue length of 'name' queue" ) ;
2011-09-19 20:08:00 +00:00
}
} ) . queue ( "name" , function ( next ) {
// last callback function
deepEqual ( order , [ 1 , 2 ] , "Callbacks in expected order" ) ;
start ( ) ;
} ) ;
setTimeout ( function ( ) {
// this is the first callback function that should be called
order . push ( 1 ) ;
2012-06-05 19:29:46 +00:00
equal ( parseFloat ( foo . css ( "width" ) ) , origWidth , "Animation does not start on its own." ) ;
2011-11-06 20:27:42 +00:00
equal ( foo . queue ( "name" ) . length , 2 , "Queue length of 'name' queue" ) ;
2011-09-19 20:08:00 +00:00
foo . dequeue ( "name" ) ;
} , 100 ) ;
} ) ;
2009-11-07 16:22:35 +00:00
test ( "animate with no properties" , function ( ) {
2009-12-21 16:11:03 +00:00
expect ( 2 ) ;
2010-10-05 19:53:35 +00:00
2009-11-07 16:22:35 +00:00
var divs = jQuery ( "div" ) , count = 0 ;
divs . animate ( { } , function ( ) {
count ++ ;
} ) ;
2011-11-06 20:27:42 +00:00
equal ( divs . length , count , "Make sure that callback is called for each element in the set." ) ;
2009-12-21 16:11:03 +00:00
stop ( ) ;
var foo = jQuery ( "#foo" ) ;
foo . animate ( { } ) ;
foo . animate ( { top : 10 } , 100 , function ( ) {
ok ( true , "Animation was properly dequeued." ) ;
start ( ) ;
} ) ;
2009-11-07 16:22:35 +00:00
} ) ;
2009-01-14 23:09:52 +00:00
test ( "animate duration 0" , function ( ) {
2009-11-30 19:22:24 +00:00
expect ( 11 ) ;
2010-10-05 19:53:35 +00:00
2009-01-14 23:09:52 +00:00
stop ( ) ;
2010-10-05 19:53:35 +00:00
2009-11-30 19:22:24 +00:00
var $elems = jQuery ( [ { a : 0 } , { a : 0 } ] ) , counter = 0 ;
2010-10-05 19:53:35 +00:00
2011-11-06 20:27:42 +00:00
equal ( jQuery . timers . length , 0 , "Make sure no animation was running from another test" ) ;
2010-10-05 19:53:35 +00:00
2009-11-30 19:22:24 +00:00
$elems . eq ( 0 ) . animate ( { a : 1 } , 0 , function ( ) {
ok ( true , "Animate a simple property." ) ;
counter ++ ;
} ) ;
2010-10-05 19:53:35 +00:00
2009-01-14 23:09:52 +00:00
// Failed until [6115]
2011-11-06 20:27:42 +00:00
equal ( jQuery . timers . length , 0 , "Make sure synchronic animations are not left on jQuery.timers" ) ;
2010-10-05 19:53:35 +00:00
2011-11-06 20:27:42 +00:00
equal ( counter , 1 , "One synchronic animations" ) ;
2010-10-05 19:53:35 +00:00
2009-11-30 19:22:24 +00:00
$elems . animate ( { a : 2 } , 0 , function ( ) {
ok ( true , "Animate a second simple property." ) ;
counter ++ ;
} ) ;
2010-10-05 19:53:35 +00:00
2011-11-06 20:27:42 +00:00
equal ( counter , 3 , "Multiple synchronic animations" ) ;
2010-10-05 19:53:35 +00:00
2009-11-30 19:22:24 +00:00
$elems . eq ( 0 ) . animate ( { a : 3 } , 0 , function ( ) {
ok ( true , "Animate a third simple property." ) ;
counter ++ ;
} ) ;
$elems . eq ( 1 ) . animate ( { a : 3 } , 200 , function ( ) {
counter ++ ;
2009-01-14 23:09:52 +00:00
// Failed until [6115]
2011-11-06 20:27:42 +00:00
equal ( counter , 5 , "One synchronic and one asynchronic" ) ;
2009-01-14 23:09:52 +00:00
start ( ) ;
2009-09-15 00:32:13 +00:00
} ) ;
2010-10-05 19:53:35 +00:00
2009-09-15 00:32:13 +00:00
var $elem = jQuery ( "<div />" ) ;
2010-10-05 19:53:35 +00:00
$elem . show ( 0 , function ( ) {
2009-11-30 19:22:24 +00:00
ok ( true , "Show callback with no duration" ) ;
2009-09-15 00:32:13 +00:00
} ) ;
2010-10-05 19:53:35 +00:00
$elem . hide ( 0 , function ( ) {
2009-11-30 19:22:24 +00:00
ok ( true , "Hide callback with no duration" ) ;
2009-09-15 00:32:13 +00:00
} ) ;
2011-01-09 21:58:47 +00:00
// manually clean up detached elements
$elem . remove ( ) ;
2009-01-14 23:09:52 +00:00
} ) ;
2011-09-12 23:48:44 +00:00
test ( "animate hyphenated properties" , function ( ) {
2009-07-25 20:56:15 +00:00
expect ( 1 ) ;
stop ( ) ;
2011-01-09 21:58:47 +00:00
jQuery ( "#foo" )
2009-07-25 20:56:15 +00:00
. css ( "font-size" , 10 )
2011-09-12 23:48:44 +00:00
. animate ( { "font-size" : 20 } , 200 , function ( ) {
2011-11-06 20:27:42 +00:00
equal ( this . style . fontSize , "20px" , "The font-size property was animated." ) ;
2009-07-25 20:56:15 +00:00
start ( ) ;
} ) ;
} ) ;
2011-09-12 23:48:44 +00:00
test ( "animate non-element" , function ( ) {
2009-01-02 23:32:10 +00:00
expect ( 1 ) ;
stop ( ) ;
var obj = { test : 0 } ;
jQuery ( obj ) . animate ( { test : 200 } , 200 , function ( ) {
2011-11-06 20:27:42 +00:00
equal ( obj . test , 200 , "The custom property should be modified." ) ;
2009-01-02 23:32:10 +00:00
start ( ) ;
} ) ;
} ) ;
2007-09-04 00:28:22 +00:00
test ( "stop()" , function ( ) {
2012-08-10 01:30:51 +00:00
expect ( 4 ) ;
2007-09-04 00:28:22 +00:00
stop ( ) ;
2012-08-10 01:30:51 +00:00
var $foo = jQuery ( "#foo" ) ,
tests = 2 ,
w = 0 ;
2007-09-04 00:28:22 +00:00
2012-06-05 19:29:46 +00:00
$foo . hide ( ) . css ( "width" , 200 )
2012-08-10 01:30:51 +00:00
. animate ( { "width" : "show" } , 1500 ) ;
2011-09-12 23:48:44 +00:00
setTimeout ( function ( ) {
2012-06-05 19:29:46 +00:00
var nw = $foo . css ( "width" ) ;
2012-08-10 01:30:51 +00:00
notEqual ( parseFloat ( nw ) , w , "An animation occurred " + nw + " " + w + "px" ) ;
2007-11-30 21:36:49 +00:00
$foo . stop ( ) ;
2007-09-04 00:28:22 +00:00
2012-06-05 19:29:46 +00:00
nw = $foo . css ( "width" ) ;
2012-08-10 01:30:51 +00:00
notEqual ( parseFloat ( nw ) , w , "Stop didn't reset the animation " + nw + " " + w + "px" ) ;
2011-09-12 23:48:44 +00:00
setTimeout ( function ( ) {
2011-01-09 21:58:47 +00:00
$foo . removeData ( ) ;
$foo . removeData ( undefined , true ) ;
2012-06-05 19:29:46 +00:00
equal ( nw , $foo . css ( "width" ) , "The animation didn't continue" ) ;
2012-08-10 01:30:51 +00:00
if ( -- tests === 0 ) {
start ( ) ;
}
2007-11-30 21:36:49 +00:00
} , 100 ) ;
} , 100 ) ;
2011-09-12 23:48:44 +00:00
var $one = jQuery ( "#fadein" ) ;
var $two = jQuery ( "#show" ) ;
$one . fadeTo ( 100 , 0 , function ( ) {
$one . stop ( ) ;
} ) ;
setTimeout ( function ( ) {
$two . fadeTo ( 100 , 0 , function ( ) {
equal ( $two . css ( "opacity" ) , "0" , "Stop does not interfere with animations on other elements (#6641)" ) ;
// Reset styles
$one . add ( $two ) . css ( "opacity" , "" ) ;
2012-08-10 01:30:51 +00:00
if ( -- tests === 0 ) {
start ( ) ;
}
2011-09-12 23:48:44 +00:00
} ) ;
} , 50 ) ;
2007-11-30 21:36:49 +00:00
} ) ;
test ( "stop() - several in queue" , function ( ) {
2012-11-08 03:11:16 +00:00
expect ( 5 ) ;
2007-11-30 21:36:49 +00:00
2012-11-08 03:11:16 +00:00
var nw , time ,
$foo = jQuery ( "#foo" ) ,
w = 0 ;
2007-11-30 21:36:49 +00:00
2012-11-08 03:11:16 +00:00
// default duration is 400ms, so 800px ensures we aren't 0 or 1 after 1ms
$foo . hide ( ) . css ( "width" , 800 ) ;
2007-11-30 21:36:49 +00:00
2012-11-08 03:11:16 +00:00
$foo . animate ( { "width" : "show" } , 400 , "linear" ) ;
$foo . animate ( { "width" : "hide" } ) ;
$foo . animate ( { "width" : "show" } ) ;
2010-09-17 18:30:30 +00:00
2012-11-08 03:11:16 +00:00
// could be replaced by something nicer using sinon.
time = jQuery . now ( ) ;
while ( time === jQuery . now ( ) ) { }
jQuery . fx . tick ( ) ;
equal ( $foo . queue ( ) . length , 3 , "3 in the queue" ) ;
nw = $foo . css ( "width" ) ;
notEqual ( parseFloat ( nw ) , 1 , "An animation occurred " + nw ) ;
$foo . stop ( ) ;
equal ( $foo . queue ( ) . length , 2 , "2 in the queue" ) ;
nw = $foo . css ( "width" ) ;
notEqual ( parseFloat ( nw ) , 1 , "Stop didn't reset the animation " + nw ) ;
$foo . stop ( true ) ;
equal ( $foo . queue ( ) . length , 0 , "0 in the queue" ) ;
2007-11-30 21:36:49 +00:00
} ) ;
test ( "stop(clearQueue)" , function ( ) {
expect ( 4 ) ;
stop ( ) ;
2011-01-09 21:58:47 +00:00
var $foo = jQuery ( "#foo" ) ;
2007-11-30 21:36:49 +00:00
var w = 0 ;
2012-06-05 19:29:46 +00:00
$foo . hide ( ) . css ( "width" , 200 ) . css ( "width" ) ;
2007-11-30 21:36:49 +00:00
2012-07-05 19:52:13 +00:00
$foo . animate ( { "width" : "show" } , 1000 ) ;
$foo . animate ( { "width" : "hide" } , 1000 ) ;
$foo . animate ( { "width" : "show" } , 1000 ) ;
2007-11-30 21:36:49 +00:00
setTimeout ( function ( ) {
2012-06-05 19:29:46 +00:00
var nw = $foo . css ( "width" ) ;
ok ( parseFloat ( nw ) != w , "An animation occurred " + nw + " " + w + "px" ) ;
2007-11-30 21:36:49 +00:00
$foo . stop ( true ) ;
2012-06-05 19:29:46 +00:00
nw = $foo . css ( "width" ) ;
ok ( parseFloat ( nw ) != w , "Stop didn't reset the animation " + nw + " " + w + "px" ) ;
2007-11-30 21:36:49 +00:00
2011-11-06 20:27:42 +00:00
equal ( $foo . queue ( ) . length , 0 , "The animation queue was cleared" ) ;
2007-11-30 21:36:49 +00:00
setTimeout ( function ( ) {
2012-06-05 19:29:46 +00:00
equal ( nw , $foo . css ( "width" ) , "The animation didn't continue" ) ;
2007-11-30 21:36:49 +00:00
start ( ) ;
} , 100 ) ;
} , 100 ) ;
} ) ;
test ( "stop(clearQueue, gotoEnd)" , function ( ) {
2009-02-19 21:30:25 +00:00
expect ( 1 ) ;
2007-11-30 21:36:49 +00:00
stop ( ) ;
2011-01-09 21:58:47 +00:00
var $foo = jQuery ( "#foo" ) ;
2007-11-30 21:36:49 +00:00
var w = 0 ;
2012-06-05 19:29:46 +00:00
$foo . hide ( ) . css ( "width" , 200 ) . css ( "width" ) ;
2007-11-30 21:36:49 +00:00
2011-04-12 08:47:46 +00:00
$foo . animate ( { width : "show" } , 1000 ) ;
$foo . animate ( { width : "hide" } , 1000 ) ;
$foo . animate ( { width : "show" } , 1000 ) ;
$foo . animate ( { width : "hide" } , 1000 ) ;
2007-11-30 21:36:49 +00:00
setTimeout ( function ( ) {
2012-06-05 19:29:46 +00:00
var nw = $foo . css ( "width" ) ;
ok ( parseFloat ( nw ) != w , "An animation occurred " + nw + " " + w + "px" ) ;
2007-11-30 21:36:49 +00:00
$foo . stop ( false , true ) ;
2012-06-05 19:29:46 +00:00
nw = $foo . css ( "width" ) ;
2009-02-19 21:30:25 +00:00
// Disabled, being flaky
2011-11-06 20:27:42 +00:00
//equal( nw, 1, "Stop() reset the animation" );
2007-11-30 21:36:49 +00:00
setTimeout ( function ( ) {
2009-02-19 21:30:25 +00:00
// Disabled, being flaky
2011-11-06 20:27:42 +00:00
//equal( $foo.queue().length, 2, "The next animation continued" );
2007-11-30 21:36:49 +00:00
$foo . stop ( true ) ;
2007-09-04 00:28:22 +00:00
start ( ) ;
} , 100 ) ;
} , 100 ) ;
} ) ;
2011-10-12 01:21:59 +00:00
asyncTest ( "stop( queue, ..., ... ) - Stop single queues" , function ( ) {
2011-09-28 15:55:29 +00:00
expect ( 3 ) ;
2012-11-08 15:05:10 +00:00
var saved ,
foo = jQuery ( "#foo" ) . css ( { width : 200 , height : 200 } ) ;
2011-09-28 15:55:29 +00:00
foo . animate ( {
width : 400
} , {
2012-11-08 15:05:10 +00:00
duration : 500 ,
2011-09-28 15:55:29 +00:00
complete : function ( ) {
2012-06-05 19:29:46 +00:00
equal ( parseFloat ( foo . css ( "width" ) ) , 400 , "Animation completed for standard queue" ) ;
equal ( parseFloat ( foo . css ( "height" ) ) , saved , "Height was not changed after the second stop" ) ;
2011-09-28 15:55:29 +00:00
start ( ) ;
}
} ) ;
foo . animate ( {
height : 400
} , {
duration : 1000 ,
queue : "height"
2012-11-08 15:05:10 +00:00
} ) . dequeue ( "height" ) . stop ( "height" , false , true ) ;
2011-09-28 15:55:29 +00:00
2012-06-05 19:29:46 +00:00
equal ( parseFloat ( foo . css ( "height" ) ) , 400 , "Height was stopped with gotoEnd" ) ;
2011-09-28 15:55:29 +00:00
foo . animate ( {
height : 200
} , {
duration : 1000 ,
queue : "height"
2011-10-12 01:21:59 +00:00
} ) . dequeue ( "height" ) . stop ( "height" , false , false ) ;
2012-06-05 19:29:46 +00:00
saved = parseFloat ( foo . css ( "height" ) ) ;
2011-10-07 15:16:38 +00:00
} ) ;
2011-09-28 15:55:29 +00:00
2007-01-09 17:15:22 +00:00
test ( "toggle()" , function ( ) {
2008-12-25 20:13:42 +00:00
expect ( 6 ) ;
2011-01-09 21:58:47 +00:00
var x = jQuery ( "#foo" ) ;
2007-11-30 21:36:49 +00:00
ok ( x . is ( ":visible" ) , "is visible" ) ;
2007-01-09 17:15:22 +00:00
x . toggle ( ) ;
2007-11-30 21:36:49 +00:00
ok ( x . is ( ":hidden" ) , "is hidden" ) ;
2007-01-09 17:15:22 +00:00
x . toggle ( ) ;
2007-11-30 21:36:49 +00:00
ok ( x . is ( ":visible" ) , "is visible again" ) ;
2010-10-05 19:53:35 +00:00
2008-12-25 20:13:42 +00:00
x . toggle ( true ) ;
ok ( x . is ( ":visible" ) , "is visible" ) ;
x . toggle ( false ) ;
ok ( x . is ( ":hidden" ) , "is hidden" ) ;
x . toggle ( true ) ;
ok ( x . is ( ":visible" ) , "is visible again" ) ;
2007-07-29 19:07:21 +00:00
} ) ;
2012-04-23 19:05:12 +00:00
test ( "jQuery.fx.prototype.cur() - <1.8 Back Compat" , 7 , function ( ) {
2011-04-17 06:43:57 +00:00
var div = jQuery ( "<div></div>" ) . appendTo ( "#qunit-fixture" ) . css ( {
2011-02-17 18:12:57 +00:00
color : "#ABC" ,
border : "5px solid black" ,
left : "auto" ,
marginBottom : "-11000px"
2011-02-17 16:26:23 +00:00
} ) [ 0 ] ;
2011-11-06 20:27:42 +00:00
equal (
2011-02-17 18:12:57 +00:00
( new jQuery . fx ( div , { } , "color" ) ) . cur ( ) ,
jQuery . css ( div , "color" ) ,
2011-02-17 16:26:23 +00:00
"Return the same value as jQuery.css for complex properties (bug #7912)"
) ;
strictEqual (
2011-02-17 18:12:57 +00:00
( new jQuery . fx ( div , { } , "borderLeftWidth" ) ) . cur ( ) ,
2011-02-17 16:26:23 +00:00
5 ,
"Return simple values parsed as Float"
) ;
2011-02-17 18:12:57 +00:00
// backgroundPosition actually returns 0% 0% in most browser
// this fakes a "" return
2012-04-23 19:05:12 +00:00
// hook now gets called twice because Tween will grab the current
// value as it is being newed
2011-02-17 18:12:57 +00:00
jQuery . cssHooks . backgroundPosition = {
get : function ( ) {
ok ( true , "hook used" ) ;
return "" ;
}
} ;
2011-02-17 16:26:23 +00:00
strictEqual (
2011-02-17 18:12:57 +00:00
( new jQuery . fx ( div , { } , "backgroundPosition" ) ) . cur ( ) ,
2011-02-17 16:26:23 +00:00
0 ,
2011-02-17 18:12:57 +00:00
"Return 0 when jQuery.css returns an empty string"
2011-02-17 16:26:23 +00:00
) ;
2011-02-17 18:12:57 +00:00
delete jQuery . cssHooks . backgroundPosition ;
2011-02-17 16:26:23 +00:00
strictEqual (
2011-02-17 18:12:57 +00:00
( new jQuery . fx ( div , { } , "left" ) ) . cur ( ) ,
2011-02-17 16:26:23 +00:00
0 ,
2011-02-17 18:12:57 +00:00
"Return 0 when jQuery.css returns 'auto'"
2011-02-17 16:26:23 +00:00
) ;
2011-11-06 20:27:42 +00:00
equal (
2011-02-17 18:12:57 +00:00
( new jQuery . fx ( div , { } , "marginBottom" ) ) . cur ( ) ,
- 11000 ,
2011-02-17 16:26:23 +00:00
"support negative values < -10000 (bug #7193)"
) ;
2012-07-02 15:30:22 +00:00
jQuery ( div ) . remove ( ) ;
2010-12-30 07:16:39 +00:00
} ) ;
2012-11-08 15:05:10 +00:00
test ( "Overflow and Display" , function ( ) {
expect ( 4 ) ;
2009-01-09 23:49:18 +00:00
stop ( ) ;
2010-10-05 19:53:35 +00:00
2012-11-08 15:05:10 +00:00
var
testClass = jQuery . makeTest ( "Overflow and Display" )
. addClass ( "overflow inline" ) ,
testStyle = jQuery . makeTest ( "Overflow and Display (inline style)" )
. css ( { overflow : "visible" , display : "inline" } ) ,
remaining = 2 ,
done = function ( ) {
equal ( jQuery . css ( this , "overflow" ) , "visible" , "Overflow should be 'visible'" ) ;
equal ( jQuery . css ( this , "display" ) , "inline" , "Display should be 'inline'" ) ;
if ( -- remaining === 0 ) {
start ( ) ;
}
} ;
testClass . add ( testStyle )
2009-01-09 23:49:18 +00:00
. addClass ( "widewidth" )
. text ( "Some sample text." )
. before ( "text before" )
. after ( "text after" )
2012-11-08 15:05:10 +00:00
. animate ( { opacity : 0.5 } , "slow" , done ) ;
2009-01-09 23:49:18 +00:00
} ) ;
2007-07-29 19:07:21 +00:00
2011-09-12 23:48:44 +00:00
jQuery . each ( {
"CSS Auto" : function ( elem , prop ) {
jQuery ( elem ) . addClass ( "auto" + prop )
. text ( "This is a long string of text." ) ;
2010-09-27 15:51:01 +00:00
return "" ;
2007-07-29 19:07:21 +00:00
} ,
2011-09-12 23:48:44 +00:00
"JS Auto" : function ( elem , prop ) {
jQuery ( elem ) . css ( prop , "" )
. text ( "This is a long string of text." ) ;
2010-09-27 15:51:01 +00:00
return "" ;
2007-07-29 19:07:21 +00:00
} ,
2011-09-12 23:48:44 +00:00
"CSS 100" : function ( elem , prop ) {
jQuery ( elem ) . addClass ( "large" + prop ) ;
2010-09-27 15:51:01 +00:00
return "" ;
2007-07-29 19:07:21 +00:00
} ,
2011-09-12 23:48:44 +00:00
"JS 100" : function ( elem , prop ) {
jQuery ( elem ) . css ( prop , prop === "opacity" ? 1 : "100px" ) ;
return prop === "opacity" ? 1 : 100 ;
2007-07-29 19:07:21 +00:00
} ,
2011-09-12 23:48:44 +00:00
"CSS 50" : function ( elem , prop ) {
jQuery ( elem ) . addClass ( "med" + prop ) ;
2010-09-27 15:51:01 +00:00
return "" ;
2007-07-29 19:07:21 +00:00
} ,
2011-09-12 23:48:44 +00:00
"JS 50" : function ( elem , prop ) {
jQuery ( elem ) . css ( prop , prop === "opacity" ? 0.50 : "50px" ) ;
return prop === "opacity" ? 0.5 : 50 ;
2007-07-29 19:07:21 +00:00
} ,
2011-09-12 23:48:44 +00:00
"CSS 0" : function ( elem , prop ) {
jQuery ( elem ) . addClass ( "no" + prop ) ;
2010-09-27 15:51:01 +00:00
return "" ;
2007-07-29 19:07:21 +00:00
} ,
2011-09-12 23:48:44 +00:00
"JS 0" : function ( elem , prop ) {
jQuery ( elem ) . css ( prop , prop === "opacity" ? 0 : "0px" ) ;
2007-07-29 19:07:21 +00:00
return 0 ;
}
2011-05-08 00:46:38 +00:00
} , function ( fn , f ) {
jQuery . each ( {
2011-09-12 23:48:44 +00:00
"show" : function ( elem , prop ) {
jQuery ( elem ) . hide ( ) . addClass ( "wide" + prop ) ;
2009-01-09 23:49:18 +00:00
return "show" ;
} ,
2011-09-12 23:48:44 +00:00
"hide" : function ( elem , prop ) {
jQuery ( elem ) . addClass ( "wide" + prop ) ;
2009-01-09 23:49:18 +00:00
return "hide" ;
} ,
2011-09-12 23:48:44 +00:00
"100" : function ( elem , prop ) {
jQuery ( elem ) . addClass ( "wide" + prop ) ;
2009-01-09 23:49:18 +00:00
return prop == "opacity" ? 1 : 100 ;
} ,
2011-09-12 23:48:44 +00:00
"50" : function ( elem , prop ) {
2009-01-09 23:49:18 +00:00
return prop == "opacity" ? 0.50 : 50 ;
} ,
2011-09-12 23:48:44 +00:00
"0" : function ( elem , prop ) {
jQuery ( elem ) . addClass ( "noback" ) ;
2009-01-09 23:49:18 +00:00
return 0 ;
}
2011-09-12 23:48:44 +00:00
} , function ( tn , t ) {
2007-07-29 19:07:21 +00:00
test ( fn + " to " + tn , function ( ) {
2009-01-09 23:49:18 +00:00
var elem = jQuery . makeTest ( fn + " to " + tn ) ;
2010-10-05 19:53:35 +00:00
2007-07-29 19:07:21 +00:00
var t _w = t ( elem , "width" ) ;
var f _w = f ( elem , "width" ) ;
var t _h = t ( elem , "height" ) ;
var f _h = f ( elem , "height" ) ;
var t _o = t ( elem , "opacity" ) ;
var f _o = f ( elem , "opacity" ) ;
2011-08-17 20:29:55 +00:00
2011-08-16 15:19:06 +00:00
if ( f _o === "" ) {
f _o = 1 ;
}
2010-10-05 19:53:35 +00:00
2007-07-29 19:07:21 +00:00
var num = 0 ;
2012-06-21 19:30:24 +00:00
// TODO: uncrowd this
if ( t _h == "show" ) { num ++ ; }
if ( t _w == "show" ) { num ++ ; }
if ( t _w == "hide" || t _w == "show" ) { num ++ ; }
if ( t _h == "hide" || t _h == "show" ) { num ++ ; }
if ( t _o == "hide" || t _o == "show" ) { num ++ ; }
if ( t _w == "hide" ) { num ++ ; }
if ( t _o . constructor == Number ) { num += 2 ; }
if ( t _w . constructor == Number ) { num += 2 ; }
if ( t _h . constructor == Number ) { num += 2 ; }
2010-10-05 19:53:35 +00:00
2011-09-12 23:48:44 +00:00
expect ( num ) ;
2007-07-29 19:07:21 +00:00
stop ( ) ;
2010-10-05 19:53:35 +00:00
2007-07-29 19:07:21 +00:00
var anim = { width : t _w , height : t _h , opacity : t _o } ;
2010-10-05 19:53:35 +00:00
2011-04-07 04:00:52 +00:00
elem . animate ( anim , 50 ) ;
2011-09-12 23:48:44 +00:00
jQuery . when ( elem ) . done ( function ( elem ) {
2011-04-07 04:00:52 +00:00
elem = elem [ 0 ] ;
2011-08-17 20:29:55 +00:00
if ( t _w == "show" ) {
2011-11-06 20:27:42 +00:00
equal ( elem . style . display , "block" , "Showing, display should block: " + elem . style . display ) ;
2011-08-17 20:29:55 +00:00
}
2010-10-05 19:53:35 +00:00
2011-09-12 23:48:44 +00:00
if ( t _w == "hide" || t _w == "show" ) {
ok ( f _w === "" ? elem . style . width === f _w : elem . style . width . indexOf ( f _w ) === 0 , "Width must be reset to " + f _w + ": " + elem . style . width ) ;
2011-08-17 20:29:55 +00:00
}
2010-10-05 19:53:35 +00:00
2011-09-12 23:48:44 +00:00
if ( t _h == "hide" || t _h == "show" ) {
ok ( f _h === "" ? elem . style . height === f _h : elem . style . height . indexOf ( f _h ) === 0 , "Height must be reset to " + f _h + ": " + elem . style . height ) ;
2011-08-17 20:29:55 +00:00
}
var cur _o = jQuery . style ( elem , "opacity" ) ;
if ( f _o !== jQuery . css ( elem , "opacity" ) ) {
f _o = f ( elem , "opacity" ) ;
}
2011-08-17 21:06:21 +00:00
// The only time an _empty_string_ will be matched is in IE
// otherwise, the correct values will be tested as usual
2011-08-17 20:29:55 +00:00
if ( f _o === "" ) {
f _o = 1 ;
}
2011-08-17 21:06:21 +00:00
// See above
2011-08-17 20:29:55 +00:00
if ( cur _o === "" ) {
cur _o = 1 ;
}
2010-09-17 17:38:13 +00:00
2011-08-17 20:29:55 +00:00
if ( t _o == "hide" || t _o == "show" ) {
2011-11-06 20:27:42 +00:00
equal ( cur _o , f _o , "Opacity must be reset to " + f _o + ": " + cur _o ) ;
2011-08-17 20:29:55 +00:00
}
2010-10-05 19:53:35 +00:00
2011-08-17 20:29:55 +00:00
if ( t _w == "hide" ) {
2011-11-06 20:27:42 +00:00
equal ( elem . style . display , "none" , "Hiding, display should be none: " + elem . style . display ) ;
2011-08-17 20:29:55 +00:00
}
2010-10-05 19:53:35 +00:00
2007-07-29 19:07:21 +00:00
if ( t _o . constructor == Number ) {
2011-11-06 20:27:42 +00:00
equal ( cur _o , t _o , "Final opacity should be " + t _o + ": " + cur _o ) ;
2010-10-05 19:53:35 +00:00
2012-06-21 19:30:24 +00:00
ok ( jQuery . css ( elem , "opacity" ) !== "" || cur _o == t _o , "Opacity should be explicitly set to " + t _o + ", is instead: " + cur _o ) ;
2007-07-29 19:07:21 +00:00
}
2010-10-05 19:53:35 +00:00
2007-07-29 19:07:21 +00:00
if ( t _w . constructor == Number ) {
2011-11-06 20:27:42 +00:00
equal ( elem . style . width , t _w + "px" , "Final width should be " + t _w + ": " + elem . style . width ) ;
2010-10-05 19:53:35 +00:00
2011-09-12 23:48:44 +00:00
var cur _w = jQuery . css ( elem , "width" ) ;
2007-07-29 19:07:21 +00:00
2012-06-21 19:30:24 +00:00
ok ( elem . style . width !== "" || cur _w == t _w , "Width should be explicitly set to " + t _w + ", is instead: " + cur _w ) ;
2007-07-29 19:07:21 +00:00
}
2010-10-05 19:53:35 +00:00
2007-07-29 19:07:21 +00:00
if ( t _h . constructor == Number ) {
2011-11-06 20:27:42 +00:00
equal ( elem . style . height , t _h + "px" , "Final height should be " + t _h + ": " + elem . style . height ) ;
2010-10-05 19:53:35 +00:00
2011-09-12 23:48:44 +00:00
var cur _h = jQuery . css ( elem , "height" ) ;
2007-07-29 19:07:21 +00:00
2012-06-21 19:30:24 +00:00
ok ( elem . style . height !== "" || cur _h == t _h , "Height should be explicitly set to " + t _h + ", is instead: " + cur _h ) ;
2007-07-29 19:07:21 +00:00
}
2010-10-05 19:53:35 +00:00
2007-07-29 19:07:21 +00:00
if ( t _h == "show" ) {
2011-09-12 23:48:44 +00:00
var old _h = jQuery . css ( elem , "height" ) ;
jQuery ( elem ) . append ( "<br/>Some more text<br/>and some more..." ) ;
2010-09-23 03:43:55 +00:00
if ( /Auto/ . test ( fn ) ) {
2011-09-12 23:48:44 +00:00
notEqual ( jQuery . css ( elem , "height" ) , old _h , "Make sure height is auto." ) ;
2010-09-23 03:43:55 +00:00
} else {
2011-11-06 20:27:42 +00:00
equal ( jQuery . css ( elem , "height" ) , old _h , "Make sure height is not auto." ) ;
2010-09-23 03:43:55 +00:00
}
2007-07-29 19:07:21 +00:00
}
2010-10-05 19:53:35 +00:00
2011-01-09 21:58:47 +00:00
// manually remove generated element
2011-09-12 23:48:44 +00:00
jQuery ( elem ) . remove ( ) ;
2011-01-09 21:58:47 +00:00
2007-07-29 19:07:21 +00:00
start ( ) ;
} ) ;
} ) ;
} ) ;
} ) ;
2012-11-13 02:06:16 +00:00
asyncTest ( "Effects chaining" , function ( ) {
var remaining = 16 ,
shrinkwrap = jQuery . support . shrinkWrapBlocks ,
props = [ "opacity" , "height" , "width" , "display" , "overflow" ] ,
setup = function ( name , selector , hiddenOverflow ) {
var $el = jQuery ( selector ) ;
return $el . data ( getProps ( $el [ 0 ] , hiddenOverflow ) ) . data ( "name" , name ) ;
} ,
assert = function ( ) {
var data = jQuery . data ( this ) ,
name = data . name ;
delete data . name ;
2007-07-29 19:07:21 +00:00
2012-11-13 02:06:16 +00:00
deepEqual ( getProps ( this ) , data , name ) ;
2007-07-29 19:07:21 +00:00
2012-11-13 02:06:16 +00:00
jQuery . removeData ( this ) ;
if ( -- remaining === 0 ) {
start ( ) ;
}
} ,
getProps = function ( el , hiddenOverflow ) {
var obj = { } ;
jQuery . each ( props , function ( i , prop ) {
obj [ prop ] = prop === "overflow" && hiddenOverflow ? "hidden" : el . style [ prop ] || jQuery . css ( el , prop ) ;
} ) ;
return obj ;
} ;
2010-10-17 18:26:32 +00:00
2012-11-13 02:06:16 +00:00
expect ( remaining ) ;
// We need to pass jQuery.support.shrinkWrapBlocks for all methods that
// set overflow hidden (slide* and show/hide with speed)
setup ( ".fadeOut().fadeIn()" , "#fadein div" ) . fadeOut ( "fast" ) . fadeIn ( "fast" , assert ) ;
setup ( ".fadeIn().fadeOut()" , "#fadeout div" ) . fadeIn ( "fast" ) . fadeOut ( "fast" , assert ) ;
setup ( ".hide().show()" , "#show div" , shrinkwrap ) . hide ( "fast" ) . show ( "fast" , assert ) ;
setup ( ".show().hide()" , "#hide div" , shrinkwrap ) . show ( "fast" ) . hide ( "fast" , assert ) ;
setup ( ".show().hide(easing)" , "#easehide div" , shrinkwrap ) . show ( "fast" ) . hide ( "fast" , "linear" , assert ) ;
setup ( ".toggle().toggle() - in" , "#togglein div" , shrinkwrap ) . toggle ( "fast" ) . toggle ( "fast" , assert ) ;
setup ( ".toggle().toggle() - out" , "#toggleout div" , shrinkwrap ) . toggle ( "fast" ) . toggle ( "fast" , assert ) ;
setup ( ".toggle().toggle(easing) - out" , "#easetoggleout div" , shrinkwrap ) . toggle ( "fast" ) . toggle ( "fast" , "linear" , assert ) ;
setup ( ".slideDown().slideUp()" , "#slidedown div" , shrinkwrap ) . slideDown ( "fast" ) . slideUp ( "fast" , assert ) ;
setup ( ".slideUp().slideDown()" , "#slideup div" , shrinkwrap ) . slideUp ( "fast" ) . slideDown ( "fast" , assert ) ;
setup ( ".slideUp().slideDown(easing)" , "#easeslideup div" , shrinkwrap ) . slideUp ( "fast" ) . slideDown ( "fast" , "linear" , assert ) ;
setup ( ".slideToggle().slideToggle() - in" , "#slidetogglein div" , shrinkwrap ) . slideToggle ( "fast" ) . slideToggle ( "fast" , assert ) ;
setup ( ".slideToggle().slideToggle() - out" , "#slidetoggleout div" , shrinkwrap ) . slideToggle ( "fast" ) . slideToggle ( "fast" , assert ) ;
setup ( ".fadeToggle().fadeToggle() - in" , "#fadetogglein div" ) . fadeToggle ( "fast" ) . fadeToggle ( "fast" , assert ) ;
setup ( ".fadeToggle().fadeToggle() - out" , "#fadetoggleout div" ) . fadeToggle ( "fast" ) . fadeToggle ( "fast" , assert ) ;
setup ( ".fadeTo(0.5).fadeTo(1.0, easing)" , "#fadeto div" ) . fadeTo ( "fast" , 0.5 ) . fadeTo ( "fast" , 1.0 , "linear" , assert ) ;
Added full support for easing in all shorthand effects methods (hide, show, toggle, fadeTo, slideUp, etc.). Previously, these methods could only be used with two of the three (speed, easing, callback) arguments, or, in the case of fadeTo, 3 of the 4 (speed, opacity, easing, callback) arguments. Added three more sets of tests to the series of "Chain" tests. Fixes #7014
2010-09-08 20:31:32 +00:00
} ) ;
2009-01-09 23:49:18 +00:00
jQuery . makeTest = function ( text ) {
2008-05-28 23:18:25 +00:00
var elem = jQuery ( "<div></div>" )
2011-09-12 23:48:44 +00:00
. attr ( "id" , "test" + jQuery . makeTest . id ++ )
2007-07-29 19:07:21 +00:00
. addClass ( "box" ) ;
2008-05-28 23:18:25 +00:00
jQuery ( "<h4></h4>" )
2007-07-29 19:07:21 +00:00
. text ( text )
. appendTo ( "#fx-tests" )
. after ( elem ) ;
return elem ;
2011-05-07 23:18:52 +00:00
} ;
2007-07-29 19:07:21 +00:00
2009-01-09 23:49:18 +00:00
jQuery . makeTest . id = 1 ;
2009-12-01 22:34:44 +00:00
test ( "jQuery.show('fast') doesn't clear radio buttons (bug #1095)" , function ( ) {
expect ( 4 ) ;
2011-02-13 22:02:14 +00:00
stop ( ) ;
2009-12-01 22:34:44 +00:00
var $checkedtest = jQuery ( "#checkedtest" ) ;
// IE6 was clearing "checked" in jQuery(elem).show("fast");
$checkedtest . hide ( ) . show ( "fast" , function ( ) {
2011-02-13 22:02:14 +00:00
ok ( ! ! jQuery ( ":radio:first" , $checkedtest ) . attr ( "checked" ) , "Check first radio still checked." ) ;
ok ( ! jQuery ( ":radio:last" , $checkedtest ) . attr ( "checked" ) , "Check last radio still NOT checked." ) ;
ok ( ! ! jQuery ( ":checkbox:first" , $checkedtest ) . attr ( "checked" ) , "Check first checkbox still checked." ) ;
ok ( ! jQuery ( ":checkbox:last" , $checkedtest ) . attr ( "checked" ) , "Check last checkbox still NOT checked." ) ;
start ( ) ;
2009-12-01 22:34:44 +00:00
} ) ;
} ) ;
2009-12-06 16:37:34 +00:00
2012-11-08 15:05:10 +00:00
test ( "interrupt toggle" , function ( ) {
expect ( 24 ) ;
stop ( ) ;
2012-01-20 20:57:11 +00:00
2012-11-08 15:05:10 +00:00
var longDuration = 2000 ,
shortDuration = 500 ,
remaining = 0 ,
$elems = jQuery ( ".chain-test" ) ,
finish = function ( ) {
if ( ! ( -- remaining ) ) {
start ( ) ;
}
} ;
2011-09-12 23:48:44 +00:00
2012-11-08 15:05:10 +00:00
jQuery . each ( { slideToggle : "height" , fadeToggle : "opacity" , toggle : "width" } , function ( method , prop ) {
var $methodElems = $elems . filter ( "[id^='" + method . toLowerCase ( ) + "']" ) . each ( function ( ) {
// Don't end test until we're done with this element
remaining ++ ;
2011-09-12 23:48:44 +00:00
2012-11-08 15:05:10 +00:00
// Save original property value for comparison
jQuery . data ( this , "startVal" , jQuery ( this ) . css ( prop ) ) ;
2011-09-12 23:48:44 +00:00
2012-11-08 15:05:10 +00:00
// Expect olddisplay data from our .hide() call below
QUnit . expectJqData ( this , "olddisplay" ) ;
} ) ;
2011-09-12 23:48:44 +00:00
2012-11-08 15:05:10 +00:00
// Interrupt a hiding toggle
$methodElems [ method ] ( longDuration ) ;
setTimeout ( function ( ) {
$methodElems . stop ( ) . each ( function ( ) {
notEqual ( jQuery ( this ) . css ( prop ) , jQuery . data ( this , "startVal" ) , ".stop() before completion of hiding ." + method + "() - #" + this . id ) ;
} ) ;
2011-09-12 23:48:44 +00:00
2012-11-08 15:05:10 +00:00
// Restore
$methodElems [ method ] ( shortDuration , function ( ) {
var id = this . id ,
$elem = jQuery ( this ) ,
startVal = $elem . data ( "startVal" ) ;
2012-01-20 20:57:11 +00:00
2012-11-08 15:05:10 +00:00
$elem . removeData ( "startVal" ) ;
2012-01-20 20:57:11 +00:00
2012-11-08 15:05:10 +00:00
equal ( $elem . css ( prop ) , startVal , "original value restored by ." + method + "() - #" + id ) ;
2012-01-20 20:57:11 +00:00
2012-11-08 15:05:10 +00:00
// Interrupt a showing toggle
$elem . hide ( ) [ method ] ( longDuration ) ;
setTimeout ( function ( ) {
$elem . stop ( ) ;
notEqual ( $elem . css ( prop ) , startVal , ".stop() before completion of showing ." + method + "() - #" + id ) ;
2012-01-20 20:57:11 +00:00
2012-11-08 15:05:10 +00:00
// Restore
$elem [ method ] ( shortDuration , function ( ) {
equal ( $elem . css ( prop ) , startVal , "original value restored by ." + method + "() - #" + id ) ;
finish ( ) ;
} ) ;
} , shortDuration ) ;
} ) ;
} , shortDuration ) ;
2011-09-12 23:48:44 +00:00
} ) ;
} ) ;
2009-12-06 16:37:34 +00:00
test ( "animate with per-property easing" , function ( ) {
2010-10-05 19:53:35 +00:00
2011-05-08 01:26:02 +00:00
expect ( 5 ) ;
2009-12-06 16:37:34 +00:00
stop ( ) ;
2010-10-05 19:53:35 +00:00
2011-05-08 00:46:38 +00:00
var data = { a : 0 , b : 0 , c : 0 } ,
_test1 _called = false ,
_test2 _called = false ,
2011-05-08 01:26:02 +00:00
_default _test _called = false ,
props = {
a : [ 100 , "_test1" ] ,
b : [ 100 , "_test2" ] ,
c : 100
} ;
2010-10-05 19:53:35 +00:00
2012-07-05 19:52:13 +00:00
jQuery . easing [ "_test1" ] = function ( p ) {
2009-12-06 16:37:34 +00:00
_test1 _called = true ;
2011-05-08 00:46:38 +00:00
return p ;
2009-12-06 16:37:34 +00:00
} ;
2010-10-05 19:53:35 +00:00
2012-07-05 19:52:13 +00:00
jQuery . easing [ "_test2" ] = function ( p ) {
2009-12-06 16:37:34 +00:00
_test2 _called = true ;
2011-05-03 23:07:24 +00:00
return p ;
2009-12-06 16:37:34 +00:00
} ;
2010-10-05 19:53:35 +00:00
2012-07-05 19:52:13 +00:00
jQuery . easing [ "_default_test" ] = function ( p ) {
2009-12-06 16:37:34 +00:00
_default _test _called = true ;
2011-05-03 23:07:24 +00:00
return p ;
2009-12-06 16:37:34 +00:00
} ;
2010-10-05 19:53:35 +00:00
2011-05-08 01:26:02 +00:00
jQuery ( data ) . animate ( props , 400 , "_default_test" , function ( ) {
2009-12-06 16:37:34 +00:00
start ( ) ;
2011-05-03 23:07:24 +00:00
2011-05-08 00:46:38 +00:00
ok ( _test1 _called , "Easing function (_test1) called" ) ;
ok ( _test2 _called , "Easing function (_test2) called" ) ;
ok ( _default _test _called , "Easing function (_default) called" ) ;
2011-05-08 01:26:02 +00:00
equal ( props . a [ 1 ] , "_test1" , "animate does not change original props (per-property easing would be lost)" ) ;
equal ( props . b [ 1 ] , "_test2" , "animate does not change original props (per-property easing would be lost)" ) ;
2009-12-06 16:37:34 +00:00
} ) ;
2010-10-05 19:53:35 +00:00
2009-12-18 16:01:19 +00:00
} ) ;
2010-10-11 20:22:43 +00:00
2012-05-11 20:20:32 +00:00
test ( "animate with CSS shorthand properties" , function ( ) {
expect ( 11 ) ;
stop ( ) ;
var _default _count = 0 ,
_special _count = 0 ,
2012-07-05 19:52:13 +00:00
propsBasic = { "padding" : "10 20 30" } ,
propsSpecial = { "padding" : [ "1 2 3" , "_special" ] } ;
2012-05-11 20:20:32 +00:00
2012-06-21 19:30:24 +00:00
jQuery . easing . _default = function ( p ) {
2012-05-11 20:20:32 +00:00
if ( p >= 1 ) {
_default _count ++ ;
}
return p ;
} ;
2012-06-21 19:30:24 +00:00
jQuery . easing . _special = function ( p ) {
2012-05-11 20:20:32 +00:00
if ( p >= 1 ) {
_special _count ++ ;
}
return p ;
} ;
jQuery ( "#foo" )
. animate ( propsBasic , 200 , "_default" , function ( ) {
equal ( this . style . paddingTop , "10px" , "padding-top was animated" ) ;
equal ( this . style . paddingLeft , "20px" , "padding-left was animated" ) ;
equal ( this . style . paddingRight , "20px" , "padding-right was animated" ) ;
equal ( this . style . paddingBottom , "30px" , "padding-bottom was animated" ) ;
equal ( _default _count , 4 , "per-animation default easing called for each property" ) ;
_default _count = 0 ;
} )
. animate ( propsSpecial , 200 , "_default" , function ( ) {
equal ( this . style . paddingTop , "1px" , "padding-top was animated again" ) ;
equal ( this . style . paddingLeft , "2px" , "padding-left was animated again" ) ;
equal ( this . style . paddingRight , "2px" , "padding-right was animated again" ) ;
equal ( this . style . paddingBottom , "3px" , "padding-bottom was animated again" ) ;
equal ( _default _count , 0 , "per-animation default easing not called" ) ;
equal ( _special _count , 4 , "special easing called for each property" ) ;
jQuery ( this ) . css ( "padding" , "0" ) ;
2012-06-21 19:30:24 +00:00
delete jQuery . easing . _default ;
delete jQuery . easing . _special ;
2012-05-11 20:20:32 +00:00
start ( ) ;
} ) ;
} ) ;
2010-10-11 20:22:43 +00:00
test ( "hide hidden elements, with animation (bug #7141)" , function ( ) {
expect ( 3 ) ;
QUnit . reset ( ) ;
stop ( ) ;
2010-12-30 06:34:48 +00:00
2011-04-17 06:43:57 +00:00
var div = jQuery ( "<div style='display:none'></div>" ) . appendTo ( "#qunit-fixture" ) ;
2011-11-06 20:27:42 +00:00
equal ( div . css ( "display" ) , "none" , "Element is hidden by default" ) ;
2010-10-11 20:22:43 +00:00
div . hide ( 1 , function ( ) {
2011-01-09 21:52:33 +00:00
ok ( ! jQuery . _data ( div , "olddisplay" ) , "olddisplay is undefined after hiding an already-hidden element" ) ;
2010-10-11 20:22:43 +00:00
div . show ( 1 , function ( ) {
2011-11-06 20:27:42 +00:00
equal ( div . css ( "display" ) , "block" , "Show a double-hidden element" ) ;
2010-10-11 20:22:43 +00:00
start ( ) ;
} ) ;
} ) ;
} ) ;
2011-02-13 22:03:46 +00:00
test ( "animate unit-less properties (#4966)" , 2 , function ( ) {
stop ( ) ;
2011-04-17 06:43:57 +00:00
var div = jQuery ( "<div style='z-index: 0; position: absolute;'></div>" ) . appendTo ( "#qunit-fixture" ) ;
2011-02-13 22:03:46 +00:00
equal ( div . css ( "z-index" ) , "0" , "z-index is 0" ) ;
div . animate ( { zIndex : 2 } , function ( ) {
equal ( div . css ( "z-index" ) , "2" , "z-index is 2" ) ;
start ( ) ;
} ) ;
} ) ;
2011-05-07 23:18:52 +00:00
test ( "animate properties missing px w/ opacity as last (#9074)" , 2 , function ( ) {
expect ( 6 ) ;
stop ( ) ;
var div = jQuery ( "<div style='position: absolute; margin-left: 0; left: 0px;'></div>" )
. appendTo ( "#qunit-fixture" ) ;
function cssInt ( prop ) {
return parseInt ( div . css ( prop ) , 10 ) ;
}
equal ( cssInt ( "marginLeft" ) , 0 , "Margin left is 0" ) ;
equal ( cssInt ( "left" ) , 0 , "Left is 0" ) ;
div . animate ( {
left : 200 ,
marginLeft : 200 ,
opacity : 0
2012-07-10 16:48:53 +00:00
} , 2000 ) ;
2011-05-07 23:18:52 +00:00
setTimeout ( function ( ) {
var ml = cssInt ( "marginLeft" ) ,
l = cssInt ( "left" ) ;
notEqual ( ml , 0 , "Margin left is not 0 after partial animate" ) ;
notEqual ( ml , 200 , "Margin left is not 200 after partial animate" ) ;
notEqual ( l , 0 , "Left is not 0 after partial animate" ) ;
notEqual ( l , 200 , "Left is not 200 after partial animate" ) ;
div . stop ( ) . remove ( ) ;
start ( ) ;
2012-11-08 15:05:10 +00:00
} , 500 ) ;
2011-05-07 23:18:52 +00:00
} ) ;
2011-05-10 15:22:12 +00:00
2011-05-09 15:46:00 +00:00
test ( "callbacks should fire in correct order (#9100)" , function ( ) {
2012-10-15 16:14:54 +00:00
expect ( 1 ) ;
2011-05-09 15:46:00 +00:00
stop ( ) ;
var a = 1 ,
cb = 0 ,
$lis = jQuery ( "<p data-operation='*2'></p><p data-operation='^2'></p>" ) . appendTo ( "#qunit-fixture" )
// The test will always pass if no properties are animated or if the duration is 0
. animate ( { fontSize : 12 } , 13 , function ( ) {
a *= jQuery ( this ) . data ( "operation" ) === "*2" ? 2 : a ;
cb ++ ;
if ( cb === 2 ) {
equal ( a , 4 , "test value has been *2 and _then_ ^2" ) ;
start ( ) ;
}
} ) ;
2011-05-10 15:22:12 +00:00
} ) ;
2011-09-28 16:00:21 +00:00
asyncTest ( "callbacks that throw exceptions will be removed (#5684)" , function ( ) {
expect ( 2 ) ;
var foo = jQuery ( "#foo" ) ;
function testException ( ) {
}
foo . animate ( { height : 1 } , 1 , function ( ) {
2012-06-21 19:30:24 +00:00
throw new testException ( ) ;
2011-09-28 16:00:21 +00:00
} ) ;
// this test thoroughly abuses undocumented methods - please feel free to update
// with any changes internally to these functions.
// make sure that the standard timer loop will NOT run.
jQuery . fx . stop ( ) ;
setTimeout ( function ( ) {
// the first call to fx.tick should raise the callback exception
raises ( jQuery . fx . tick , testException , "Exception was thrown" ) ;
// the second call shouldn't
jQuery . fx . tick ( ) ;
ok ( true , "Test completed without throwing a second exception" ) ;
start ( ) ;
} , 1 ) ;
} ) ;
2011-12-09 01:01:23 +00:00
test ( "animate will scale margin properties individually" , function ( ) {
expect ( 2 ) ;
stop ( ) ;
var foo = jQuery ( "#foo" ) . css ( {
2012-07-05 19:52:13 +00:00
"margin" : 0 ,
"marginLeft" : 100
2011-12-09 01:01:23 +00:00
} ) ;
ok ( foo . css ( "marginLeft" ) !== foo . css ( "marginRight" ) , "Sanity Check" ) ;
foo . animate ( {
2012-07-05 19:52:13 +00:00
"margin" : 200
2011-12-09 01:01:23 +00:00
} ) . stop ( ) ;
ok ( foo . css ( "marginLeft" ) !== foo . css ( "marginRight" ) , "The margin properties are different" ) ;
// clean up for next test
foo . css ( {
2012-10-16 14:17:14 +00:00
"marginLeft" : "" ,
"marginRight" : "" ,
"marginTop" : "" ,
"marginBottom" : ""
2011-12-09 01:01:23 +00:00
} ) ;
start ( ) ;
} ) ;
2012-04-23 19:05:12 +00:00
2012-05-29 02:25:04 +00:00
test ( "Do not append px to 'fill-opacity' #9548" , 1 , function ( ) {
var $div = jQuery ( "<div>" ) . appendTo ( "#qunit-fixture" ) ;
$div . css ( "fill-opacity" , 0 ) . animate ( { "fill-opacity" : 1.0 } , 0 , function ( ) {
equal ( jQuery ( this ) . css ( "fill-opacity" ) , 1 , "Do not append px to 'fill-opacity'" ) ;
2012-07-02 15:30:22 +00:00
$div . remove ( ) ;
2012-05-29 02:25:04 +00:00
} ) ;
} ) ;
2012-04-23 19:05:12 +00:00
// Start 1.8 Animation tests
2012-06-22 20:03:39 +00:00
asyncTest ( "jQuery.Animation( object, props, opts )" , 4 , function ( ) {
2012-04-23 19:05:12 +00:00
var testObject = {
2012-07-05 19:52:13 +00:00
"foo" : 0 ,
"bar" : 1 ,
"width" : 100
2012-04-23 19:05:12 +00:00
} ,
testDest = {
2012-07-05 19:52:13 +00:00
"foo" : 1 ,
"bar" : 0 ,
"width" : 200
2012-04-23 19:05:12 +00:00
} ;
2012-07-05 19:52:13 +00:00
var animation = jQuery . Animation ( testObject , testDest , { "duration" : 1 } ) ;
2012-06-22 20:03:39 +00:00
animation . done ( function ( ) {
for ( var prop in testDest ) {
equal ( testObject [ prop ] , testDest [ prop ] , "Animated: " + prop ) ;
}
animation . done ( function ( ) {
deepEqual ( testObject , testDest , "No unexpected properties" ) ;
2012-04-23 19:05:12 +00:00
start ( ) ;
} ) ;
2012-06-22 20:03:39 +00:00
} ) ;
2012-04-23 19:05:12 +00:00
} ) ;
asyncTest ( "Animate Option: step: function( percent, tween )" , 1 , function ( ) {
var counter = { } ;
2012-07-25 20:36:21 +00:00
jQuery ( "#foo" ) . animate ( {
prop1 : 1 ,
prop2 : 2 ,
prop3 : 3
} , {
duration : 1 ,
step : function ( value , tween ) {
var calls = counter [ tween . prop ] = counter [ tween . prop ] || [ ] ;
// in case this is called multiple times for either, lets store it in
// 0 or 1 in the array
calls [ value === 0 ? 0 : 1 ] = value ;
}
} ) . queue ( function ( next ) {
deepEqual ( counter , {
prop1 : [ 0 , 1 ] ,
prop2 : [ 0 , 2 ] ,
prop3 : [ 0 , 3 ]
} , "Step function was called once at 0% and once at 100% for each property" ) ;
next ( ) ;
start ( ) ;
} ) ;
2012-04-23 19:05:12 +00:00
} ) ;
asyncTest ( "Animate callbacks have correct context" , 2 , function ( ) {
var foo = jQuery ( "#foo" ) ;
foo . animate ( {
height : 10
} , 10 , function ( ) {
equal ( foo [ 0 ] , this , "Complete callback after stop(true) `this` is element" ) ;
} ) . stop ( true , true ) ;
foo . animate ( {
height : 100
} , 10 , function ( ) {
equal ( foo [ 0 ] , this , "Complete callback `this` is element" ) ;
start ( ) ;
} ) ;
} ) ;
2012-05-11 20:32:50 +00:00
asyncTest ( "User supplied callback called after show when fx off (#8892)" , 2 , function ( ) {
var foo = jQuery ( "#foo" ) ;
jQuery . fx . off = true ;
foo . hide ( ) ;
foo . fadeIn ( 500 , function ( ) {
ok ( jQuery ( this ) . is ( ":visible" ) , "Element is visible in callback" ) ;
foo . fadeOut ( 500 , function ( ) {
ok ( jQuery ( this ) . is ( ":hidden" ) , "Element is hidden in callback" ) ;
jQuery . fx . off = false ;
start ( ) ;
} ) ;
} ) ;
} ) ;
2012-05-18 17:48:24 +00:00
2012-05-23 02:36:55 +00:00
test ( "animate should set display for disconnected nodes" , function ( ) {
expect ( 18 ) ;
var i = 0 ,
methods = {
toggle : [ 1 ] ,
slideToggle : [ ] ,
fadeIn : [ ] ,
fadeTo : [ "fast" , 0.5 ] ,
slideDown : [ "fast" ] ,
show : [ 1 ] ,
animate : [ { width : "show" } ]
} ,
Implement expectation test instead of using _removeData. Close gh-997.
* Removed inline usage of QUnit.reset() because it is messing with the
expectation model as reset does .empty() which does a recursive cleanData
on everything in #qunit-fixture, so any expectJqData above .reset() would
fail negatively.
Instead of calling reset inline, either updated the following assertions to
take previous assertions' state into account, or broke the test() up into
2 tests at the point where it would call QUnit.reset.
* After introducing the new memory leak discovery a whole bunch of tests were
failing as they didn't clean up everything. However I didn't (yet) add
QUnit.expectJqData calls all over the place because in most if not all of
these cases it is valid data storage. For example in test "data()", there
will be an internal data key for "parsedAttrs". This particular test isn't
intending to test for memory leaks, so therefor I made the new discovery
system only push failures when the test contains at least 1 call to
QUnit.expectJqData.
When not, we'll assume that whatever data is being stored is acceptable
because the relevant elements still exist in the DOM anyway (QUnit.reset
will remove the elements and clean up the data automatically).
I did add a "Always check jQuery.data" mode in the test suite that will
trigger it everywhere. Maybe one day we'll include a call to everywhere,
but for now I'm keeping the status quo: Only consider data left in storage
to be a problem if the test says so ("opt-in").
* Had to move #fx-tests inside the fixture because ".remove()" test would
otherwise remove stuff permanently and cause random other tests to fail
as "#hide div" would yield an empty collection.
(Why wasn't this in the fixture in the first place?)
As a result moving fx-tests into the fixture a whole bunch of tests failed
that relied on arbitrary stuff about the document-wide or fixture-wide
state (e.g. number of divs etc.). So I had to adjust various tests to
limit their sample data to not be so variable and unlimited...
* Moved out tests for expando cleanup into a separate test.
* Fixed implied global variable 'pass' in effects.js that was causing
"TypeError: boolean is not a function" in *UNRELATED* dimensions.js that
uses a global variable "pass = function () {};" ...
* Removed spurious calls to _removeData. The new test exposed various failures
e.g. where div[0] isn't being assigned any data anyway.
(queue.js and attributes.js toggleClass).
* Removed spurious clean up at the bottom of test() functions that are
already covered by the teardown (calling QUnit.reset or removeClass to
supposedly undo any changes).
* Documented the parentheses-less magic line in toggleClass. It appeared that
it would always keep the current class name if there was any (since the
assignment started with "this.className || ...".
Adding parentheses + spacing is 8 bytes (though only 1 in gzip apparently).
Only added the comment for now, though I prefer clarity with logical
operators, I'd rather not face the yayMinPD[1] in this test-related commit.
* Updated QUnit urlConfig to the new format (raw string is deprecated).
* Clean up odd htmlentities in test titles, QUnit escapes this.
(^\s+test\(.*)(>\;) → $1>
(^\s+test\(.*)(<\;) → $1<
[1] jQuery MinJsGz Release Police Department (do the same, download less)
2012-10-17 08:33:47 +00:00
$divTest = jQuery ( "<div>test</div>" ) ,
// parentNode = null
$divEmpty = jQuery ( "<div/>" ) ,
$divNone = jQuery ( "<div style='display: none;'/>" ) ,
$divInline = jQuery ( "<div style='display: inline;'/>" ) ;
2012-05-23 02:36:55 +00:00
Implement expectation test instead of using _removeData. Close gh-997.
* Removed inline usage of QUnit.reset() because it is messing with the
expectation model as reset does .empty() which does a recursive cleanData
on everything in #qunit-fixture, so any expectJqData above .reset() would
fail negatively.
Instead of calling reset inline, either updated the following assertions to
take previous assertions' state into account, or broke the test() up into
2 tests at the point where it would call QUnit.reset.
* After introducing the new memory leak discovery a whole bunch of tests were
failing as they didn't clean up everything. However I didn't (yet) add
QUnit.expectJqData calls all over the place because in most if not all of
these cases it is valid data storage. For example in test "data()", there
will be an internal data key for "parsedAttrs". This particular test isn't
intending to test for memory leaks, so therefor I made the new discovery
system only push failures when the test contains at least 1 call to
QUnit.expectJqData.
When not, we'll assume that whatever data is being stored is acceptable
because the relevant elements still exist in the DOM anyway (QUnit.reset
will remove the elements and clean up the data automatically).
I did add a "Always check jQuery.data" mode in the test suite that will
trigger it everywhere. Maybe one day we'll include a call to everywhere,
but for now I'm keeping the status quo: Only consider data left in storage
to be a problem if the test says so ("opt-in").
* Had to move #fx-tests inside the fixture because ".remove()" test would
otherwise remove stuff permanently and cause random other tests to fail
as "#hide div" would yield an empty collection.
(Why wasn't this in the fixture in the first place?)
As a result moving fx-tests into the fixture a whole bunch of tests failed
that relied on arbitrary stuff about the document-wide or fixture-wide
state (e.g. number of divs etc.). So I had to adjust various tests to
limit their sample data to not be so variable and unlimited...
* Moved out tests for expando cleanup into a separate test.
* Fixed implied global variable 'pass' in effects.js that was causing
"TypeError: boolean is not a function" in *UNRELATED* dimensions.js that
uses a global variable "pass = function () {};" ...
* Removed spurious calls to _removeData. The new test exposed various failures
e.g. where div[0] isn't being assigned any data anyway.
(queue.js and attributes.js toggleClass).
* Removed spurious clean up at the bottom of test() functions that are
already covered by the teardown (calling QUnit.reset or removeClass to
supposedly undo any changes).
* Documented the parentheses-less magic line in toggleClass. It appeared that
it would always keep the current class name if there was any (since the
assignment started with "this.className || ...".
Adding parentheses + spacing is 8 bytes (though only 1 in gzip apparently).
Only added the comment for now, though I prefer clarity with logical
operators, I'd rather not face the yayMinPD[1] in this test-related commit.
* Updated QUnit urlConfig to the new format (raw string is deprecated).
* Clean up odd htmlentities in test titles, QUnit escapes this.
(^\s+test\(.*)(>\;) → $1>
(^\s+test\(.*)(<\;) → $1<
[1] jQuery MinJsGz Release Police Department (do the same, download less)
2012-10-17 08:33:47 +00:00
strictEqual ( $divTest . show ( ) [ 0 ] . style . display , "block" , "set display with show() for element with parentNode = document fragment" ) ;
strictEqual ( $divEmpty . show ( ) [ 0 ] . style . display , "block" , "set display with show() for element with parentNode = null" ) ;
strictEqual ( $divNone . show ( ) [ 0 ] . style . display , "block" , "show() should change display if it already set to none" ) ;
strictEqual ( $divInline . show ( ) [ 0 ] . style . display , "inline" , "show() should not change display if it already set" ) ;
2012-05-23 02:36:55 +00:00
Implement expectation test instead of using _removeData. Close gh-997.
* Removed inline usage of QUnit.reset() because it is messing with the
expectation model as reset does .empty() which does a recursive cleanData
on everything in #qunit-fixture, so any expectJqData above .reset() would
fail negatively.
Instead of calling reset inline, either updated the following assertions to
take previous assertions' state into account, or broke the test() up into
2 tests at the point where it would call QUnit.reset.
* After introducing the new memory leak discovery a whole bunch of tests were
failing as they didn't clean up everything. However I didn't (yet) add
QUnit.expectJqData calls all over the place because in most if not all of
these cases it is valid data storage. For example in test "data()", there
will be an internal data key for "parsedAttrs". This particular test isn't
intending to test for memory leaks, so therefor I made the new discovery
system only push failures when the test contains at least 1 call to
QUnit.expectJqData.
When not, we'll assume that whatever data is being stored is acceptable
because the relevant elements still exist in the DOM anyway (QUnit.reset
will remove the elements and clean up the data automatically).
I did add a "Always check jQuery.data" mode in the test suite that will
trigger it everywhere. Maybe one day we'll include a call to everywhere,
but for now I'm keeping the status quo: Only consider data left in storage
to be a problem if the test says so ("opt-in").
* Had to move #fx-tests inside the fixture because ".remove()" test would
otherwise remove stuff permanently and cause random other tests to fail
as "#hide div" would yield an empty collection.
(Why wasn't this in the fixture in the first place?)
As a result moving fx-tests into the fixture a whole bunch of tests failed
that relied on arbitrary stuff about the document-wide or fixture-wide
state (e.g. number of divs etc.). So I had to adjust various tests to
limit their sample data to not be so variable and unlimited...
* Moved out tests for expando cleanup into a separate test.
* Fixed implied global variable 'pass' in effects.js that was causing
"TypeError: boolean is not a function" in *UNRELATED* dimensions.js that
uses a global variable "pass = function () {};" ...
* Removed spurious calls to _removeData. The new test exposed various failures
e.g. where div[0] isn't being assigned any data anyway.
(queue.js and attributes.js toggleClass).
* Removed spurious clean up at the bottom of test() functions that are
already covered by the teardown (calling QUnit.reset or removeClass to
supposedly undo any changes).
* Documented the parentheses-less magic line in toggleClass. It appeared that
it would always keep the current class name if there was any (since the
assignment started with "this.className || ...".
Adding parentheses + spacing is 8 bytes (though only 1 in gzip apparently).
Only added the comment for now, though I prefer clarity with logical
operators, I'd rather not face the yayMinPD[1] in this test-related commit.
* Updated QUnit urlConfig to the new format (raw string is deprecated).
* Clean up odd htmlentities in test titles, QUnit escapes this.
(^\s+test\(.*)(>\;) → $1>
(^\s+test\(.*)(<\;) → $1<
[1] jQuery MinJsGz Release Police Department (do the same, download less)
2012-10-17 08:33:47 +00:00
QUnit . expectJqData ( $divTest [ 0 ] , "olddisplay" ) ;
QUnit . expectJqData ( $divEmpty [ 0 ] , "olddisplay" ) ;
QUnit . expectJqData ( $divNone [ 0 ] , "olddisplay" ) ;
2012-05-23 02:36:55 +00:00
stop ( ) ;
jQuery . each ( methods , function ( name , opt ) {
jQuery . each ( [
// parentNode = document fragment
jQuery ( "<div>test</div>" ) ,
// parentNode = null
jQuery ( "<div/>" )
] , function ( ) {
var callback = [ function ( ) {
strictEqual ( this . style . display , "block" , "set display to block with " + name ) ;
Implement expectation test instead of using _removeData. Close gh-997.
* Removed inline usage of QUnit.reset() because it is messing with the
expectation model as reset does .empty() which does a recursive cleanData
on everything in #qunit-fixture, so any expectJqData above .reset() would
fail negatively.
Instead of calling reset inline, either updated the following assertions to
take previous assertions' state into account, or broke the test() up into
2 tests at the point where it would call QUnit.reset.
* After introducing the new memory leak discovery a whole bunch of tests were
failing as they didn't clean up everything. However I didn't (yet) add
QUnit.expectJqData calls all over the place because in most if not all of
these cases it is valid data storage. For example in test "data()", there
will be an internal data key for "parsedAttrs". This particular test isn't
intending to test for memory leaks, so therefor I made the new discovery
system only push failures when the test contains at least 1 call to
QUnit.expectJqData.
When not, we'll assume that whatever data is being stored is acceptable
because the relevant elements still exist in the DOM anyway (QUnit.reset
will remove the elements and clean up the data automatically).
I did add a "Always check jQuery.data" mode in the test suite that will
trigger it everywhere. Maybe one day we'll include a call to everywhere,
but for now I'm keeping the status quo: Only consider data left in storage
to be a problem if the test says so ("opt-in").
* Had to move #fx-tests inside the fixture because ".remove()" test would
otherwise remove stuff permanently and cause random other tests to fail
as "#hide div" would yield an empty collection.
(Why wasn't this in the fixture in the first place?)
As a result moving fx-tests into the fixture a whole bunch of tests failed
that relied on arbitrary stuff about the document-wide or fixture-wide
state (e.g. number of divs etc.). So I had to adjust various tests to
limit their sample data to not be so variable and unlimited...
* Moved out tests for expando cleanup into a separate test.
* Fixed implied global variable 'pass' in effects.js that was causing
"TypeError: boolean is not a function" in *UNRELATED* dimensions.js that
uses a global variable "pass = function () {};" ...
* Removed spurious calls to _removeData. The new test exposed various failures
e.g. where div[0] isn't being assigned any data anyway.
(queue.js and attributes.js toggleClass).
* Removed spurious clean up at the bottom of test() functions that are
already covered by the teardown (calling QUnit.reset or removeClass to
supposedly undo any changes).
* Documented the parentheses-less magic line in toggleClass. It appeared that
it would always keep the current class name if there was any (since the
assignment started with "this.className || ...".
Adding parentheses + spacing is 8 bytes (though only 1 in gzip apparently).
Only added the comment for now, though I prefer clarity with logical
operators, I'd rather not face the yayMinPD[1] in this test-related commit.
* Updated QUnit urlConfig to the new format (raw string is deprecated).
* Clean up odd htmlentities in test titles, QUnit escapes this.
(^\s+test\(.*)(>\;) → $1>
(^\s+test\(.*)(<\;) → $1<
[1] jQuery MinJsGz Release Police Department (do the same, download less)
2012-10-17 08:33:47 +00:00
QUnit . expectJqData ( this , "olddisplay" ) ;
2012-05-23 02:36:55 +00:00
if ( ++ i === 14 ) {
start ( ) ;
}
} ] ;
jQuery . fn [ name ] . apply ( this , opt . concat ( callback ) ) ;
} ) ;
} ) ;
} ) ;
2012-05-18 17:48:24 +00:00
asyncTest ( "Animation callback should not show animated element as animated (#7157)" , 1 , function ( ) {
var foo = jQuery ( "#foo" ) ;
foo . animate ( {
opacity : 0
} , 100 , function ( ) {
2012-10-16 14:17:14 +00:00
ok ( ! foo . is ( ":animated" ) , "The element is not animated" ) ;
2012-05-18 17:48:24 +00:00
start ( ) ;
} ) ;
2012-05-23 02:36:55 +00:00
} ) ;
asyncTest ( "hide called on element within hidden parent should set display to none (#10045)" , 3 , function ( ) {
var hidden = jQuery ( ".hidden" ) ,
elems = jQuery ( "<div>hide</div><div>hide0</div><div>hide1</div>" ) ;
hidden . append ( elems ) ;
jQuery . when (
elems . eq ( 0 ) . hide ( ) ,
elems . eq ( 1 ) . hide ( 0 ) ,
elems . eq ( 2 ) . hide ( 1 )
) . done ( function ( ) {
strictEqual ( elems . get ( 0 ) . style . display , "none" , "hide() called on element within hidden parent should set display to none" ) ;
strictEqual ( elems . get ( 1 ) . style . display , "none" , "hide( 0 ) called on element within hidden parent should set display to none" ) ;
strictEqual ( elems . get ( 2 ) . style . display , "none" , "hide( 1 ) called on element within hidden parent should set display to none" ) ;
2012-07-02 15:30:22 +00:00
elems . remove ( ) ;
2012-05-23 02:36:55 +00:00
start ( ) ;
} ) ;
} ) ;
asyncTest ( "hide, fadeOut and slideUp called on element width height and width = 0 should set display to none" , 5 , function ( ) {
var foo = jQuery ( "#foo" ) ,
i = 0 ,
elems = jQuery ( ) ;
for ( ; i < 5 ; i ++ ) {
2012-10-16 14:17:14 +00:00
elems = elems . add ( "<div style='width:0;height:0;'></div>" ) ;
2012-05-23 02:36:55 +00:00
}
foo . append ( elems ) ;
jQuery . when (
elems . eq ( 0 ) . hide ( ) ,
elems . eq ( 1 ) . hide ( jQuery . noop ) ,
elems . eq ( 2 ) . hide ( 1 ) ,
elems . eq ( 3 ) . fadeOut ( ) ,
elems . eq ( 4 ) . slideUp ( )
) . done ( function ( ) {
strictEqual ( elems . get ( 0 ) . style . display , "none" , "hide() called on element width height and width = 0 should set display to none" ) ;
strictEqual ( elems . get ( 1 ) . style . display , "none" ,
"hide( jQuery.noop ) called on element width height and width = 0 should set display to none" ) ;
strictEqual ( elems . get ( 2 ) . style . display , "none" , "hide( 1 ) called on element width height and width = 0 should set display to none" ) ;
strictEqual ( elems . get ( 3 ) . style . display , "none" , "fadeOut() called on element width height and width = 0 should set display to none" ) ;
strictEqual ( elems . get ( 4 ) . style . display , "none" , "slideUp() called on element width height and width = 0 should set display to none" ) ;
start ( ) ;
} ) ;
} ) ;
2012-05-23 03:04:45 +00:00
asyncTest ( "Handle queue:false promises" , 10 , function ( ) {
var foo = jQuery ( "#foo" ) . clone ( ) . andSelf ( ) ,
step = 1 ;
foo . animate ( {
top : 1
} , {
duration : 10 ,
queue : false ,
complete : function ( ) {
ok ( step ++ <= 2 , "Step one or two" ) ;
}
} ) . animate ( {
bottom : 1
} , {
duration : 10 ,
complete : function ( ) {
ok ( step > 2 && step < 5 , "Step three or four" ) ;
step ++ ;
}
} ) ;
foo . promise ( ) . done ( function ( ) {
equal ( step ++ , 5 , "steps 1-5: queue:false then queue:fx done" ) ;
foo . animate ( {
top : 10
} , {
duration : 10 ,
complete : function ( ) {
ok ( step > 5 && step < 8 , "Step six or seven" ) ;
step ++ ;
}
} ) . animate ( {
bottom : 10
} , {
duration : 10 ,
queue : false ,
complete : function ( ) {
ok ( step > 7 && step < 10 , "Step eight or nine" ) ;
step ++ ;
}
} ) . promise ( ) . done ( function ( ) {
equal ( step ++ , 10 , "steps 6-10: queue:fx then queue:false" ) ;
start ( ) ;
} ) ;
} ) ;
} ) ;
asyncTest ( "multiple unqueued and promise" , 4 , function ( ) {
var foo = jQuery ( "#foo" ) ,
step = 1 ;
foo . animate ( {
marginLeft : 300
} , {
duration : 500 ,
queue : false ,
complete : function ( ) {
strictEqual ( step ++ , 2 , "Step 2" ) ;
}
} ) . animate ( {
top : 100
} , {
2012-11-08 15:05:10 +00:00
duration : 1000 ,
2012-05-23 03:04:45 +00:00
queue : false ,
complete : function ( ) {
strictEqual ( step ++ , 3 , "Step 3" ) ;
}
} ) . animate ( { } , {
duration : 2000 ,
queue : false ,
complete : function ( ) {
// no properties is a non-op and finishes immediately
strictEqual ( step ++ , 1 , "Step 1" ) ;
}
} ) . promise ( ) . done ( function ( ) {
strictEqual ( step ++ , 4 , "Step 4" ) ;
start ( ) ;
} ) ;
2012-05-29 02:25:04 +00:00
} ) ;
2012-06-11 18:17:36 +00:00
asyncTest ( "animate does not change start value for non-px animation (#7109)" , 1 , function ( ) {
var parent = jQuery ( "<div><div></div></div>" ) . css ( { width : 284 , height : 1 } ) . appendTo ( "#qunit-fixture" ) ,
child = parent . children ( ) . css ( { fontSize : "98.6in" , width : "0.01em" , height : 1 } ) ,
actual = parseFloat ( child . css ( "width" ) ) ,
computed = [ ] ;
child . animate ( { width : "0%" } , {
duration : 1 ,
step : function ( ) {
computed . push ( parseFloat ( child . css ( "width" ) ) ) ;
}
} ) . queue ( function ( next ) {
2012-06-12 01:17:07 +00:00
var ratio = computed [ 0 ] / actual ;
2012-06-21 19:30:24 +00:00
ok ( ratio > 0.9 && ratio < 1.1 , "Starting width was close enough" ) ;
2012-06-11 18:17:36 +00:00
next ( ) ;
2012-07-02 15:30:22 +00:00
parent . remove ( ) ;
2012-06-11 18:17:36 +00:00
start ( ) ;
} ) ;
} ) ;
2012-06-26 17:48:31 +00:00
asyncTest ( "non-px animation handles non-numeric start (#11971)" , 2 , function ( ) {
var foo = jQuery ( "#foo" ) ,
initial = foo . css ( "backgroundPositionX" ) ;
2012-09-30 21:41:42 +00:00
if ( ! initial ) {
2012-07-09 06:56:42 +00:00
expect ( 1 ) ;
ok ( true , "Style property not understood" ) ;
start ( ) ;
return ;
}
2012-06-26 17:48:31 +00:00
foo . animate ( { backgroundPositionX : "42%" } , {
duration : 1 ,
progress : function ( anim , percent ) {
if ( percent ) {
return ;
}
if ( parseFloat ( initial ) ) {
equal ( jQuery . style ( this , "backgroundPositionX" ) , initial , "Numeric start preserved" ) ;
} else {
equal ( jQuery . style ( this , "backgroundPositionX" ) , "0%" , "Non-numeric start zeroed" ) ;
}
} ,
done : function ( ) {
equal ( jQuery . style ( this , "backgroundPositionX" ) , "42%" , "End reached" ) ;
start ( ) ;
}
} ) ;
} ) ;
asyncTest ( "Animation callbacks (#11797)" , 15 , function ( ) {
2012-06-22 20:03:39 +00:00
var targets = jQuery ( "#foo" ) . children ( ) ,
2012-06-23 21:50:57 +00:00
done = false ,
expectedProgress = 0 ;
2012-06-22 20:03:39 +00:00
targets . eq ( 0 ) . animate ( { } , {
2012-06-23 21:50:57 +00:00
duration : 1 ,
2012-06-26 17:48:31 +00:00
start : function ( ) {
ok ( true , "empty: start" ) ;
} ,
2012-06-23 21:50:57 +00:00
progress : function ( anim , percent ) {
equal ( percent , 0 , "empty: progress 0" ) ;
} ,
2012-06-22 20:03:39 +00:00
done : function ( ) {
ok ( true , "empty: done" ) ;
} ,
fail : function ( ) {
ok ( false , "empty: fail" ) ;
} ,
always : function ( ) {
ok ( true , "empty: always" ) ;
done = true ;
}
} ) ;
2012-06-26 17:48:31 +00:00
ok ( done , "empty: done immediately" ) ;
2012-06-22 20:03:39 +00:00
done = false ;
targets . eq ( 1 ) . animate ( {
opacity : 0
} , {
2012-06-23 21:50:57 +00:00
duration : 1 ,
2012-06-26 17:48:31 +00:00
start : function ( ) {
ok ( true , "stopped: start" ) ;
} ,
2012-06-23 21:50:57 +00:00
progress : function ( anim , percent ) {
equal ( percent , 0 , "stopped: progress 0" ) ;
} ,
2012-06-22 20:03:39 +00:00
done : function ( ) {
ok ( false , "stopped: done" ) ;
} ,
fail : function ( ) {
ok ( true , "stopped: fail" ) ;
} ,
always : function ( ) {
ok ( true , "stopped: always" ) ;
done = true ;
}
} ) . stop ( ) ;
2012-06-26 17:48:31 +00:00
ok ( done , "stopped: stopped immediately" ) ;
2012-06-22 20:03:39 +00:00
targets . eq ( 2 ) . animate ( {
opacity : 0
} , {
2012-06-23 21:50:57 +00:00
duration : 1 ,
2012-06-26 17:48:31 +00:00
start : function ( ) {
ok ( true , "async: start" ) ;
} ,
2012-06-23 21:50:57 +00:00
progress : function ( anim , percent ) {
2012-07-26 02:33:48 +00:00
// occasionally the progress handler is called twice in first frame.... *shrug*
if ( percent === 0 && expectedProgress === 1 ) {
return ;
}
2012-06-23 21:50:57 +00:00
equal ( percent , expectedProgress , "async: progress " + expectedProgress ) ;
// once at 0, once at 1
expectedProgress ++ ;
} ,
2012-06-22 20:03:39 +00:00
done : function ( ) {
ok ( true , "async: done" ) ;
} ,
fail : function ( ) {
ok ( false , "async: fail" ) ;
} ,
always : function ( ) {
ok ( true , "async: always" ) ;
start ( ) ;
}
} ) ;
} ) ;
2012-07-20 23:36:55 +00:00
test ( "Animate properly sets overflow hidden when animating width/height (#12117)" , 4 , function ( ) {
jQuery . each ( [ "height" , "width" ] , function ( _ , prop ) {
jQuery . each ( [ 100 , 0 ] , function ( _ , value ) {
var div = jQuery ( "<div>" ) ,
props = { } ;
props [ prop ] = value ;
div . animate ( props , 1 ) ;
equal ( div . css ( "overflow" ) , "hidden" ,
"overflow: hidden set when animating " + prop + " to " + value ) ;
div . stop ( ) ;
} ) ;
} ) ;
} ) ;
2012-11-08 01:22:14 +00:00
test ( "Each tick of the timer loop uses a fresh time (#12837)" , function ( ) {
var lastVal , current ,
tmp = jQuery ( {
test : 0
} ) ;
expect ( 3 ) ;
tmp . animate ( {
test : 100
} , {
step : function ( p , fx ) {
ok ( fx . now !== lastVal , "Current value is not the last value: " + lastVal + " - " + fx . now ) ;
lastVal = fx . now ;
}
} ) ;
current = jQuery . now ( ) ;
// intentionally empty, we want to spin wheels until the time changes.
while ( current === jQuery . now ( ) ) { }
// now that we have a new time, run another tick
jQuery . fx . tick ( ) ;
current = jQuery . now ( ) ;
// intentionally empty, we want to spin wheels until the time changes.
while ( current === jQuery . now ( ) ) { }
jQuery . fx . tick ( ) ;
tmp . stop ( ) ;
} ) ;
2012-08-15 19:31:37 +00:00
test ( "Animations with 0 duration don't ease (#12273)" , 1 , function ( ) {
jQuery . easing . test = function ( ) {
ok ( false , "Called easing" ) ;
} ;
jQuery ( "#foo" ) . animate ( {
height : 100
} , {
duration : 0 ,
easing : "test" ,
complete : function ( ) {
equal ( jQuery ( this ) . height ( ) , 100 , "Height is 100" ) ;
}
} ) ;
delete jQuery . easing . test ;
} ) ;
2012-11-08 01:23:24 +00:00
jQuery . map ( [ "toggle" , "slideToggle" , "fadeToggle" ] , function ( method ) {
// this test would look a lot better if we were using something to override
// the default timers
2012-11-13 02:06:16 +00:00
var duration = 1500 ;
2012-11-08 01:23:24 +00:00
asyncTest ( "toggle state tests: " + method + " (#8685)" , function ( ) {
function secondToggle ( ) {
var stopped = parseFloat ( element . css ( check ) ) ;
tested = false ;
element [ method ] ( {
2012-11-13 02:06:16 +00:00
duration : duration ,
2012-11-08 01:23:24 +00:00
step : function ( p , fx ) {
if ( fx . pos > 0.1 && fx . prop === check && ! tested ) {
tested = true ;
equal ( fx . start , stopped , check + " starts at " + stopped + " where it stopped" ) ;
equal ( fx . end , original , check + " ending value is " + original ) ;
element . stop ( ) ;
}
} ,
always : start
} ) ;
}
var tested ,
original ,
check = method === "slideToggle" ? "height" : "opacity" ,
2012-11-13 02:06:16 +00:00
element = jQuery ( "#foo" ) . height ( 200 ) ;
2012-11-08 01:23:24 +00:00
expect ( 4 ) ;
element [ method ] ( {
2012-11-13 02:06:16 +00:00
duration : duration ,
easing : "linear" ,
2012-11-08 01:23:24 +00:00
step : function ( p , fx ) {
if ( fx . pos > 0.1 && fx . prop === check && ! tested ) {
tested = true ;
original = fx . start ;
2012-11-08 02:45:03 +00:00
ok ( fx . start !== 0 , check + " is starting at " + original + " on first toggle (non-zero)" ) ;
2012-11-08 01:23:24 +00:00
equal ( fx . end , 0 , check + " is ending at 0 on first toggle" ) ;
element . stop ( ) ;
}
} ,
always : secondToggle
} ) ;
} ) ;
} ) ;
2012-11-08 06:02:14 +00:00
test ( "jQuery.fx.start & jQuery.fx.stop hook points" , function ( ) {
var oldStart = jQuery . fx . start ,
oldStop = jQuery . fx . stop ,
foo = jQuery ( { foo : 0 } ) ;
expect ( 3 ) ;
jQuery . fx . start = function ( ) {
ok ( true , "start called" ) ;
} ;
jQuery . fx . stop = function ( ) {
ok ( true , "stop called" ) ;
} ;
// calls start
foo . animate ( { foo : 1 } , { queue : false } ) ;
// calls start
foo . animate ( { foo : 2 } , { queue : false } ) ;
foo . stop ( ) ;
// calls stop
jQuery . fx . tick ( ) ;
// cleanup
jQuery . fx . start = oldStart ;
jQuery . fx . stop = oldStop ;
} ) ;
2012-05-29 16:40:13 +00:00
} // if ( jQuery.fx )