Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Tweaked manipulation test to ignore order of elements from selector (not ↵ | John Resig | 2010-08-26 | 1 | -1/+1 | |
| | | | | important to the test). | |||||
* | Replace usage of the removed global reset() method with QUnit.reset(). | jzaefferer | 2010-07-28 | 1 | -74/+74 | |
| | ||||||
* | I take that back! It was a bug, but the cache had to be triggered and a ↵ | jeresig | 2010-03-05 | 1 | -5/+6 | |
| | | | | collection of cached nodes had to be passed in (an odd case to be sure). Fixes #6227. | |||||
* | Attempted to fix #6227, not entirely sure if it's a problem as I'm having a ↵ | jeresig | 2010-03-05 | 1 | -1/+9 | |
| | | | | hard time reproducing it. Regardless, the change is harmless and potentially even speeds up appendTo, etc. slightly. | |||||
* | Adapt the nbsp entity test for Opera (output isn't as important as the fact ↵ | jeresig | 2010-02-13 | 1 | -1/+2 | |
| | | | | that it's getting converted. | |||||
* | Don't inject style elements using innerHTML as they will go away in IE. ↵ | jeresig | 2010-02-13 | 1 | -1/+6 | |
| | | | | Fixes #5977. | |||||
* | Added some tests to test repeated injected of scripts. Was fixed when fixing ↵ | jeresig | 2010-02-13 | 1 | -5/+4 | |
| | | | | #5094. | |||||
* | Make sure that we don't try to use a detached node (that was in a fragment) ↵ | jeresig | 2010-02-13 | 1 | -1/+11 | |
| | | | | as a fragment in IE. Fixes #5829. | |||||
* | Make sure the fragment isn't used if it's not the same set we're working ↵ | jeresig | 2010-02-13 | 1 | -1/+6 | |
| | | | | with. Fixes #6068. | |||||
* | Make sure that &#...; entities are encoded properly. Fixes #6042. | jeresig | 2010-02-05 | 1 | -1/+4 | |
| | ||||||
* | Adding in some more replaceWith tests for #5917. | Neeraj Singh | 2010-02-01 | 1 | -1/+11 | |
| | ||||||
* | Only detach the incoming elements to replaceWith if they're DOM nodes. Fixes ↵ | Noah Sloan | 2010-02-01 | 1 | -2/+8 | |
| | | | | #5986. | |||||
* | Fix for problem in IE 8 where deserialized (then reserialized) form markup ↵ | jeresig | 2010-02-01 | 1 | -1/+9 | |
| | | | | was getting malformed. Thanks IE. Fixes #5998. | |||||
* | Make sure that the correct context is being passed in for replaceWith(fn). ↵ | jeresig | 2010-01-25 | 1 | -0/+10 | |
| | | | | Fixes #5798. | |||||
* | Make work wrapInner(fn) work consistently. Fixes #5799. | jeresig | 2010-01-25 | 1 | -8/+14 | |
| | ||||||
* | Make sure that checked state is cloned properly. Based upon the patch by ↵ | Michael Monteleone | 2010-01-25 | 1 | -1/+19 | |
| | | | | Michael, required better test cases and in doing so found more edge cases. Introduced a new check into jQuery.support as a result. Fixes #5929. | |||||
* | Cleaned up divs that should've been removed after a test run. | jeresig | 2010-01-25 | 1 | -1/+7 | |
| | ||||||
* | Make sure that XHTML-style HTML is purified in .html(). Fixes #5845. | John Resig | 2010-01-24 | 1 | -2/+7 | |
| | ||||||
* | Expose cleanData, make sure that all bound event handlers are properly ↵ | jeresig | 2010-01-23 | 1 | -0/+70 | |
| | | | | cleaned up after html/empty/remove. Fixes #5856 and #5906. | |||||
* | wrapAll(Function) doesn't actually make sense. That's why I couldn't figure ↵ | Yehuda Katz | 2010-01-14 | 1 | -5/+0 | |
| | | | | out how to test it! | |||||
* | We only care that some of the html return value is escaped, not necessarily ↵ | jeresig | 2010-01-13 | 1 | -8/+8 | |
| | | | | all of it (as is the case in Safari 3.x). | |||||
* | Some more touching up of the replaceWith tests. | jeresig | 2010-01-11 | 1 | -4/+12 | |
| | ||||||
* | Did some reorganizing of the recently added replaceWith tests. | jeresig | 2010-01-11 | 1 | -3/+2 | |
| | ||||||
* | Make sure that wrapInner works on elements that have no contents. Fixes #3552. | jeresig | 2010-01-11 | 1 | -1/+6 | |
| | ||||||
* | Final pass at fixing #5785. Need to make sure that inner-nodes are detached ↵ | jeresig | 2010-01-11 | 1 | -3/+13 | |
| | | | | before the remove() occurs (and it should still occur, the nodes are being obliterated. | |||||
* | Made some additional tests for #5785. | jeresig | 2010-01-11 | 1 | -1/+5 | |
| | ||||||
* | Make sure we use detach instead of remove in replaceWith. Fixes #5785. | jeresig | 2010-01-11 | 1 | -1/+10 | |
| | ||||||
* | Added manipulation tests for setter function args. | jeresig | 2010-01-07 | 1 | -3/+175 | |
| | ||||||
* | Added some .text(Function) tests. | jeresig | 2010-01-07 | 1 | -26/+37 | |
| | ||||||
* | Moved the val() tests from manipulation into attributes. | jeresig | 2010-01-07 | 1 | -86/+0 | |
| | ||||||
* | Make sure that the correct value is being pulled from checkboxes in Webkit. ↵ | jeresig | 2009-12-22 | 1 | -2/+8 | |
| | | | | Fixes #5699. | |||||
* | Made sure that the .val() logic for setting radios and checkboxes was ↵ | jeresig | 2009-12-22 | 1 | -1/+17 | |
| | | | | correct. Fixes #5698. | |||||
* | Fixed the issue where getting an empty value was impossible. Fixes #5697. | jeresig | 2009-12-22 | 1 | -1/+6 | |
| | ||||||
* | Fix up whitespace and a couple of glitches. | Yehuda Katz | 2009-12-09 | 1 | -6/+6 | |
| | ||||||
* | Add function values to addClass, removeClass, toggleClass, text, and removeAttr | Yehuda Katz | 2009-12-09 | 1 | -3/+4 | |
| | ||||||
* | Made .clone(true) also copy over element data. Fixes #4191. | John Resig | 2009-12-09 | 1 | -1/+6 | |
| | ||||||
* | Make sure that events are cloned for wrap, fixes #2977. | John Resig | 2009-12-08 | 1 | -1/+15 | |
| | ||||||
* | Added in support for injecting area elements into map elements. Fixes #4484. | John Resig | 2009-12-06 | 1 | -1/+5 | |
| | ||||||
* | Fix for #4011, crash when two text nodes are appended in IE. | Dave Methvin | 2009-12-06 | 1 | -1/+3 | |
| | ||||||
* | Make sure that the previous element is removed from the page before the next ↵ | jeresig | 2009-12-05 | 1 | -1/+8 | |
| | | | | is inserted, in replaceWith. Using a variation of the patch by snaury. Fixes #2697. | |||||
* | Removed debug statements from manipulation tests, was causing errors in IE. | jeresig | 2009-12-02 | 1 | -4/+0 | |
| | ||||||
* | Adding a test that a new option can be selected with val(N) | Yehuda Katz | 2009-12-01 | 1 | -1/+5 | |
| | ||||||
* | Use .add() to merge two test groups together for .unwrap(). | jeresig | 2009-11-30 | 1 | -1/+1 | |
| | ||||||
* | Fixed wrap test that was looking for comment values from .text(). | jeresig | 2009-11-30 | 1 | -1/+1 | |
| | ||||||
* | Added support for .text() on text nodes. Fixes #5525. | John Resig | 2009-11-17 | 1 | -1/+4 | |
| | ||||||
* | Fixed the case where HTML that contained entities was being inserted as text ↵ | John Resig | 2009-11-11 | 1 | -1/+7 | |
| | | | | strings instead of HTML. Thanks to dmethvin for the test case! Fixes #5483. | |||||
* | Switched from using QUnit's isObj/isSet to the more robust same method. | John Resig | 2009-09-29 | 1 | -1/+1 | |
| | ||||||
* | Adding in .unwrap() support, thanks to Ben Alman! Fixes #5191. | John Resig | 2009-09-25 | 1 | -0/+31 | |
| | ||||||
* | A follow-up to [6578] (which stopped adding expandos to elements that didn't ↵ | John Resig | 2009-09-25 | 1 | -2/+2 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | have data). That broke jQuery.unique() (so we're now using the unique from Sizzle). Using Sizzle's unique (which also sorts in document order) changed how add, andSelf, parents, nextAll, prevAll, and siblings work. after and before were changed to not use .add() (in order to guarantee their position in the jQuery set). Also, jQuery.data(elem) was updated to return that element's data object (instead of its ID). $("<div/>").after("<span/>") => [ div, span ] (calling after on a disconnected DOM node adds the nodes to the end of the jQuery set) $("<div/>").before("<span/>") => [ span, div ] (calling before on a disconnected DOM node adds the nodes to the beginning of the jQuery set) $("div").add("span") => [ div, span, span, div, span ] (results now come out in document order) $("div").find("code").andSelf(); => [ div, code, code ] (results now come out in document order) Same goes for .parents(), .nextAll(), .prevAll(), and .siblings(). Exception: .parents() will still return the results in reverse document order. jQuery.data(elem) => { object of data } (no longer returns the unique ID assigned to the node) | |||||
* | remove globals in tests for compability with ?noglobals, to be enabled by ↵ | Jörn Zaefferer | 2009-09-15 | 1 | -1/+1 | |
| | | | | default |