Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Be sure to clean up the previous test. | jeresig | 2010-10-22 | 1 | -0/+2 | |
| | ||||||
* | Make sure that height/width getters work on hidden inputs and disconnected ↵ | jeresig | 2010-10-22 | 1 | -1/+19 | |
| | | | | elements. Fixes #7225. | |||||
* | Adding another test for an issue in Gecko's matchesSelector implementation. ↵ | jeresig | 2010-10-21 | 1 | -2/+8 | |
| | | | | Fixes #7243. | |||||
* | Update number of expected assertions in attribute tests | Anton M | 2010-10-19 | 1 | -2/+2 | |
| | | | | | Followup to commit 97dfa0d5a85a32fe56aba837bbf2bc889b092d2b which had the side effect to break some attribute unit tests | |||||
* | Add some more tests to make sure that pulling in data- properties on an ↵ | John Resig | 2010-10-17 | 1 | -3/+11 | |
| | | | | element with no data set, works. | |||||
* | fadeToggle(). as suggested by Karl Swedberg in his jQcon talk. patched live! omg | Paul Irish | 2010-10-17 | 1 | -0/+7 | |
| | ||||||
* | Make sure that .data() (no args) returns a list of all the data- properties ↵ | John Resig | 2010-10-17 | 1 | -2/+21 | |
| | | | | as well. Also make sure that accessing a data- property via .data() doesn't cause it to change again at a later time (it should be static). Fixes #7222, #7223. | |||||
* | We removed deleteExpando after 1.4.2, for some reason. This caused problems ↵ | John Resig | 2010-10-17 | 1 | -1/+6 | |
| | | | | with removeData() (no arguments). Fixes #7209. | |||||
* | Fix the number of change tests and remove textarea tests. | jeresig | 2010-10-14 | 1 | -32/+6 | |
| | ||||||
* | Testing *, * was unnecessary - especially in slower browsers. | jeresig | 2010-10-14 | 1 | -2/+1 | |
| | ||||||
* | Don't test inline-block in browsers that don't support it (or an ↵ | jeresig | 2010-10-14 | 1 | -17/+46 | |
| | | | | approximation of it, like IE). | |||||
* | Use prepend for the focuin test (to avoid making the test suite jump). | jeresig | 2010-10-14 | 1 | -9/+15 | |
| | ||||||
* | Test visible on inline elements. | jeresig | 2010-10-14 | 1 | -2/+2 | |
| | ||||||
* | Getting weird results for font size tests across platforms - easier to test ↵ | jeresig | 2010-10-14 | 1 | -3/+2 | |
| | | | | something else (the exact property isn't important for this test). | |||||
* | Change font size to 15px in the test to fix a false negative. Thanks @jitter ↵ | jeresig | 2010-10-13 | 1 | -2/+2 | |
| | | | | for the catch in 73e4ef27f0d0a92e573092729107ca5572d52292. | |||||
* | Make sure that focusin/focusout bubbles in non-IE browsers. | Justin Meyer | 2010-10-13 | 1 | -1/+15 | |
| | ||||||
* | We want to make sure that we only run the MSIE-specific filter tests if ↵ | jeresig | 2010-10-13 | 1 | -2/+2 | |
| | | | | opacity is explicitly not supported. | |||||
* | Test CSS test on font size instead of padding. | jeresig | 2010-10-13 | 1 | -2/+2 | |
| | ||||||
* | IE 9 preserves the case of the Alpha filter - maintain it in the test as well. | jeresig | 2010-10-13 | 1 | -2/+2 | |
| | ||||||
* | Fix broken Ajax test after recent revert to jQuery.ajax namespace. | jeresig | 2010-10-13 | 1 | -1/+1 | |
| | ||||||
* | Merge branch 'bug7150' of http://github.com/csnover/jquery | John Resig | 2010-10-12 | 1 | -1/+4 | |
|\ | ||||||
| * | Fix patch for #7150, which was not deleting the events object properly on ↵ | Colin Snover | 2010-10-12 | 1 | -1/+4 | |
| | | | | | | | | plain JS objects. Thanks to jitter for catching it. | |||||
* | | Fix some gaps in the handling of event data properties. Thanks to @jitter in ↵ | John Resig | 2010-10-12 | 1 | -1/+1 | |
| | | | | | | | | ff6ceadbfd470463e63708413eb5a55bd7e90c69 for the catches. | |||||
* | | The child selector-prefix branch doesn't work with selectors that have a ↵ | John Resig | 2010-10-12 | 1 | -1/+2 | |
| | | | | | | | | larger depth. Removing for now - will need to re-evaluate in the future. | |||||
* | | Make sure that .find() with multiple direct child selectors is handled ↵ | John Resig | 2010-10-12 | 1 | -1/+2 | |
|/ | | | | correctly. Fixes #7144. | |||||
* | Use a key name less likely to result in collisions for events on plain JS ↵ | Colin Snover | 2010-10-11 | 1 | -1/+1 | |
| | | | | objects. Fixes bug #7150. | |||||
* | Handle some edge cases with binding events to the window object (which is ↵ | John Resig | 2010-10-11 | 1 | -1/+5 | |
| | | | | also a plain object - causing some confusion). Fixes #7143. | |||||
* | Add some resize event tests. | John Resig | 2010-10-11 | 1 | -0/+8 | |
| | ||||||
* | Added some more tests relating to attaching data to a window. | John Resig | 2010-10-11 | 1 | -2/+11 | |
| | ||||||
* | Merge branch 'bug7141' of http://github.com/csnover/jquery into csnover-bug7141 | John Resig | 2010-10-11 | 1 | -0/+30 | |
|\ | ||||||
| * | Fix olddisplay was inappropriately set when calling hide on an already ↵ | Colin Snover | 2010-10-11 | 1 | -0/+30 | |
| | | | | | | | | hidden element. Fixes #7141. | |||||
* | | Fixed getting styles from disconnected nodes. Fixes #7148. | Scott González | 2010-10-11 | 1 | -1/+3 | |
|/ | ||||||
* | Make sure closest works on disconnected DOM nodes. Fixes #7142. | John Resig | 2010-10-11 | 1 | -2/+4 | |
| | ||||||
* | Disable 304/Not Modified Ajax tests in Opera due to lack of suitable ↵ | jeresig | 2010-10-10 | 1 | -5/+22 | |
| | | | | workaround. See: http://gist.github.com/599419 | |||||
* | Merge branch 'bug7123' of http://github.com/csnover/jquery into csnover-bug7123 | John Resig | 2010-10-09 | 1 | -1/+13 | |
|\ | ||||||
| * | Coerce all array values to strings before comparison in val(). Fixes bug #7123. | Colin Snover | 2010-10-08 | 1 | -1/+13 | |
| | | ||||||
* | | Merge branch 'animate-nonblock' of http://github.com/csnover/jquery into ↵ | John Resig | 2010-10-09 | 2 | -60/+180 | |
|\ \ | | | | | | | | | | csnover-animate-nonblock | |||||
| * | | Fixed code convention issues. Reduced size of overflow reset code. Fixed ↵ | Colin Snover | 2010-10-08 | 1 | -9/+8 | |
| | | | | | | | | | | | | broken show() test cases. | |||||
| * | | Update $.fn.animate to only keep overflow set to hidden after an animation ↵ | Colin Snover | 2010-10-05 | 1 | -18/+14 | |
| | | | | | | | | | | | | in IE6 when it is needed (width/height change) and update unit tests to reflect when overflow does not get reset. | |||||
| * | | IE6 will shrink-wrap elements with layout instead of allowing content to ↵ | Colin Snover | 2010-10-05 | 1 | -46/+85 | |
| | | | | | | | | | | | | flow outside of the border-box. Add a test for this and do not remove the overflow property after an animation in IE6. | |||||
| * | | Update $.fn.animate to change display mode only when necessary (inline, ↵ | Colin Snover | 2010-10-05 | 2 | -2/+75 | |
| | | | | | | | | | | | | non-floated elements), and to use a more proper display mode for those elements. Fixes #2185. | |||||
| * | | Fix :visible does not work properly when display:none is set directly on an ↵ | Colin Snover | 2010-10-05 | 1 | -0/+13 | |
| |/ | | | | | | | element in IE8. Fixes #4512. | |||||
* | | Added some more tests to make sure that replaceWith is working correctly. ↵ | jeresig | 2010-10-09 | 1 | -2/+13 | |
| | | | | | | | | Follow-up to the comment on 2a6de9ab66653e5e424d9cc79d195b555158d04f. | |||||
* | | Make sure null/NaN values aren't set in .css(). Fixes #7116. | jeresig | 2010-10-09 | 1 | -1/+21 | |
| | | ||||||
* | | Prevent IE from throwing errors when setting RGBA values. Fixes #5509. | Colin Snover | 2010-10-09 | 1 | -1/+11 | |
|/ | ||||||
* | Tweak broken serialize tests from commit ↵ | John Resig | 2010-09-30 | 1 | -3/+3 | |
| | | | | 879799fe955f01b85b59fd8a0096d415fc48df03. Thanks to @jaubourg for the catch. | |||||
* | Make sure setting opacity does not clobber other inline filters. Fixes #7101. | Colin Snover | 2010-09-30 | 1 | -3/+6 | |
| | ||||||
* | Using data() on JavaScript objects sets fields directly on the object. Note ↵ | Dave Reed | 2010-09-29 | 2 | -28/+40 | |
| | | | | that events are now a property of a function (to avoid JSON serialization - and only in the case of JavaScript objects, not DOM nodes). Fixes #6807. | |||||
* | Fix number of expected select tests from commit ↵ | John Resig | 2010-09-29 | 1 | -1/+1 | |
| | | | | 879799fe955f01b85b59fd8a0096d415fc48df03. Thanks to @jitter for the catch. | |||||
* | Handle child selectors in particular - away from the selector engine. Fixes ↵ | John Resig | 2010-09-28 | 1 | -1/+3 | |
| | | | | #7029. |