aboutsummaryrefslogtreecommitdiffstats
path: root/test
Commit message (Collapse)AuthorAgeFilesLines
* Adding unit tests to make sure .scrollTop() and .scrollLeft() work cross-frame.brandonaaron2010-02-281-1/+9
|
* Use correct window reference in offset to work properly cross-frame. Fixes ↵brandonaaron2010-02-271-2/+36
| | | | #6190.
* Attach data directly to plain objects, no reason to use the central ↵jeresig2010-02-271-3/+11
| | | | jQuery.cache. Fixes #6189.
* Adding in .bind(name, false), .unbind(name, false) support - an easy way to ↵jeresig2010-02-271-0/+19
| | | | just stop bubbling and the default action on an element. Fixes #6188.
* Make it so that you can pass in event data to .click(), et. al. Fixes #6187.jeresig2010-02-261-0/+11
|
* Make sure that undefined is always returned for undefined data properties. ↵jeresig2010-02-261-6/+16
| | | | Fixes #6166.
* Make sure that unbinding on a plain javascript object works correctly. Fixes ↵jeresig2010-02-261-0/+29
| | | | #6184.
* Make sure that live events bubble unless explicitly told not to, like a ↵jeresig2010-02-261-25/+33
| | | | normal event. Fixes #6182.
* No need to run trim on every class iteration in addClass, thanks for the ↵jeresig2010-02-131-1/+5
| | | | heads-up Leeoniya.
* Adapt the nbsp entity test for Opera (output isn't as important as the fact ↵jeresig2010-02-131-1/+2
| | | | that it's getting converted.
* Make sure that elements that have been removed also have their special ↵jeresig2010-02-131-2/+14
| | | | events cleaned up. Fixes #6084.
* Make sure that live focus and blur events also bind to the regular events, ↵jeresig2010-02-131-1/+9
| | | | to handle triggered events. Fixes #6055.
* When binding a change directly to a file input just passthrough to the ↵jeresig2010-02-131-0/+9
| | | | normal bind. A temporary fix for #5997, needs more investigation.
* Don't inject style elements using innerHTML as they will go away in IE. ↵jeresig2010-02-131-1/+6
| | | | Fixes #5977.
* Added some tests to test repeated injected of scripts. Was fixed when fixing ↵jeresig2010-02-131-5/+4
| | | | #5094.
* Make sure that we don't try to use a detached node (that was in a fragment) ↵jeresig2010-02-131-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 ↵jeresig2010-02-131-1/+6
| | | | with. Fixes #6068.
* If .attr() is run on no elements undefined should be returned (as should be ↵jeresig2010-02-131-1/+4
| | | | the case when no attribute is found). Fixes #6012.
* Make sure that no extra whitespace is leftover after an addClass. Fixes #6050.jeresig2010-02-131-1/+10
|
* Make sure leading whitespace is trimmed for parseJSON. Fixes #6031.jeresig2010-02-131-2/+4
|
* Make sure that the teardown is called after all the handlers of a type are ↵John Resig2010-02-111-2/+6
| | | | removed. Fixes #6065.
* Ok, this should actually fix #6041 :)Ben Alman2010-02-061-1/+1
|
* Make sure that &#...; entities are encoded properly. Fixes #6042.jeresig2010-02-051-1/+4
|
* Make sure that we don't try to double-encode params using the traditional ↵jeresig2010-02-051-2/+4
| | | | style. Fixes #6041.
* Rewrote the live event handling to use the new event logic. Also added in ↵jeresig2010-02-041-22/+68
| | | | support for live namespaced events. Fixes #5945.
* Added some more tests for checking the execution order of events (from last ↵jeresig2010-02-041-0/+20
| | | | night's changes - routes around Chrome's busted object looping abilities).
* Forgot to land Justin's tests for the event fixes.Justin Meyer2010-02-041-0/+18
|
* A large refactor of the event handling logic. Data and namespace information ↵jeresig2010-02-041-2/+3
| | | | is maintained in a separate object now, no longer on the event handler. Proxy functions are no longer needed, as a result. Additionally execution order of the handlers is maintained, fixing #4261, and the execution of handlers is maintained even while they're being removed. Live events will be refactored separately.
* Adding in some more replaceWith tests for #5917.Neeraj Singh2010-02-011-1/+11
|
* Only detach the incoming elements to replaceWith if they're DOM nodes. Fixes ↵Noah Sloan2010-02-011-2/+8
| | | | #5986.
* Make sure the resulting className from removeClass is nicely trimmed. Fixes ↵jeresig2010-02-011-1/+12
| | | | #5988.
* Fix for problem in IE 8 where deserialized (then reserialized) form markup ↵jeresig2010-02-011-1/+9
| | | | was getting malformed. Thanks IE. Fixes #5998.
* Add .delegate() and .undelegate(). An alternative to using .live() which ↵jeresig2010-02-011-32/+411
| | | | goes from a single root and filters by the specified selectors. Should be used like do: .delegate(td, hover, someFn);. Fixes #6005.
* Landing some minor perf optimization to jQuery().jeresig2010-01-281-1/+1
|
* Provide a way to simulate default browser actions. Fixes #5973.jeresig2010-01-281-1/+6
|
* Make sure that jQuery.data( elem ) always returns a data object, fixes ↵jeresig2010-01-281-7/+6
| | | | #5971. Improve the performance of .bind() and .unbind(), fixes #5972.
* Make sure that the correct context is being passed in for replaceWith(fn). ↵jeresig2010-01-251-0/+10
| | | | Fixes #5798.
* Make work wrapInner(fn) work consistently. Fixes #5799.jeresig2010-01-251-8/+14
|
* Provided detailed message for JSON parse errors. Fixes #4435.Mike Alup2010-01-251-2/+3
|
* Make sure that checked state is cloned properly. Based upon the patch by ↵Michael Monteleone2010-01-251-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.
* Make sure that special.add actually copies over event namespaces and data. ↵jeresig2010-01-251-0/+41
| | | | Fixes #5779 and #5834.
* Make sure multiple bound events have their namespaces and data maintained. ↵jeresig2010-01-251-0/+34
| | | | Fixes #3549.
* Cleaned up divs that should've been removed after a test run.jeresig2010-01-251-1/+7
|
* Make sure that it's possible to preventDefault natively-triggered (submit, ↵jeresig2010-01-251-1/+29
| | | | focus, blur, click) events. Fixes #5695.
* Make sure original context is maintained and not the deep extended one. ↵John Resig2010-01-251-0/+21
| | | | Fixes #5924.
* Objects with length properties weren't getting serialized properly by ↵John Resig2010-01-251-0/+13
| | | | jQuery.param(). Fixes #5862.
* Don't set the context in .load() as it stops the global ajax events from ↵John Resig2010-01-241-0/+24
| | | | firing. Fixes #5922.
* Make sure that XHTML-style HTML is purified in .html(). Fixes #5845.John Resig2010-01-241-2/+7
|
* Expose cleanData, make sure that all bound event handlers are properly ↵jeresig2010-01-231-0/+70
| | | | cleaned up after html/empty/remove. Fixes #5856 and #5906.
* Added in .height(fn) and .width(fn) support. Fixes #5915.jeresig2010-01-231-22/+56
|