aboutsummaryrefslogtreecommitdiffstats
path: root/test
Commit message (Collapse)AuthorAgeFilesLines
* You can now overwrite values returned from .data() with .bind("getData") - ↵John Resig2008-02-031-4/+20
| | | | returning a value will override any bound value on that element.
* Tweaked the .data() event triggering - it now triggers a single 'setData' ↵John Resig2008-02-031-12/+12
| | | | event, passing in a key value pair of what was changed.
* Added support for .unbind(".test") to unbind all namespaced events on an ↵John Resig2008-02-031-0/+10
| | | | element.
* Added $().data(), $().removeData(), and .bind("click!"). .data() and ↵John Resig2008-02-031-0/+51
| | | | .removeData() handle namespaced data, .data() triggers a "set-KEY" event on all modified elements, and .bind("click!") only triggers a click (and no namespaced events).
* Fix #2184 by using the jQuery.clean() function instead of a direct innerHTML ↵David Serduke2008-01-231-1/+13
| | | | assignment in the clone() function for IE.
* Fixed #2174 by removing the s.dataType == "json" check for possible cross ↵David Serduke2008-01-171-4/+4
| | | | domain since it causes absolute urls to use a <script> tag ajax retrieval even though absolute urls work fine for retrieving local data. Cross-domain jsonp will still work since the $.ajax() function actually changes the s.dataType to "script" before it reaches this check in cases where it is s.dataType == "jsonp" or s.dataType == "json" and a parameter has =? in it.
* Discontinued the test for $(form.elements).John Resig2008-01-141-2/+5
|
* Excluded a couple Ajax tests from running locally.John Resig2008-01-141-1/+8
|
* Added support for breaking in an object loop (Bug #2111).John Resig2008-01-141-1/+14
|
* Adding browser UA testsBrandon Aaron2008-01-141-0/+36
|
* fix for #2114; refactored tests for bind() to highlight failing ↵Jörn Zaefferer2008-01-141-16/+26
| | | | select-change-test
* Test for #2114Jörn Zaefferer2008-01-041-1/+2
|
* Fixed a couple problems found in the test suite. First, IE doesn't like it ↵David Serduke2007-12-201-1/+2
| | | | when text nodes were trying to duplicate their events in clone, so don't do text nodes (that shouldn't have events anyway). Also the fx module was freezing from a recent update that wasn't quite finished.
* Removed a unit test that tested to see if queued objects were of a certain ↵David Serduke2007-12-201-6/+0
| | | | type. It was decided you can queue anything and it is up to the coder to make sure it was intended.
* Fixed #2027 - make sure that cloned elements (within appendTo, etc.) have ↵John Resig2007-12-201-1/+6
| | | | their events cloned by default.
* Fixed a problem in the unit tests for IE where an optimization made the test ↵David Serduke2007-12-201-1/+2
| | | | case not work. The optimization was fine. It was the unit test that was taking a short cut which caused it to fail after the optimization went in.
* added version to all builds; changed current version to 1.2.2-pre - to be ↵Jörn Zaefferer2007-12-191-0/+48
| | | | updated after each release so its clear that a build is from which milestone; build.xml cleanup (removing uselss lite, docs, test and _with_plguins targets); deleted useless docs build files (replaced by wiki and wiki xml exporter and api browsers)
* Fixed #2076 where .val() could return an array instead of undefined when the ↵David Serduke2007-12-181-1/+2
| | | | jquery object was empty. The bug was created during the .val() refactoring for the javascript strict FF ticket.
* width and height methods are now working properlyBrandon Aaron2007-12-182-6/+51
|
* Fixed #2070 by adding a test for !nodeType to isArrayLike so DOM elements ↵David Serduke2007-12-171-1/+1
| | | | like SELECT are not considered array-like (even though they really are).
* test for #2070Jörn Zaefferer2007-12-171-1/+4
|
* Test for #2069Jörn Zaefferer2007-12-171-0/+8
|
* Fixed #2062 by adding a check to see if the selector is array-like in .not() ↵David Serduke2007-12-171-1/+3
| | | | before testing it as an array. Otherwise it does a straight comparison during the filter test.
* Fixed #2037 where Opera would mis-state the value of 'display' after an ↵David Serduke2007-12-172-2/+9
| | | | innerHTML was done in some cases.
* Added a fix for bug #2020 - if you want to do data: {callback: "?"}, do ↵John Resig2007-12-171-3/+3
| | | | jsonp: "callback" instead.
* Adding data and removeData testsBrandon Aaron2007-12-161-1/+19
|
* new special events api, ready is now a first class event that you can use ↵Brandon Aaron2007-12-151-3/+28
| | | | bind, unbind or the ready helper, two new events: mouseenter and mouseleave, the hover helper method now uses mouseenter and mouseleave, bind and unbind can now take a space sperated list of event types
* Fixed #2046 by forcing the dataType to 'html' in the .load() function.David Serduke2007-12-141-10/+23
|
* Added a test case for $("<option>test</option>")[0].selected (bug #2050).John Resig2007-12-141-1/+3
|
* Fixed #1854 by using wizzud's suggestion. The only real difference is the ↵David Serduke2007-12-133-5/+10
| | | | code is only called when there is more than a single selector. So there should be no speed decrease in the current working cases. Only additional functionality for cases that used to fail.
* Fixed #1750 by adding a url that starts with "//" and is a dataType "script" ↵David Serduke2007-12-121-0/+22
| | | | will now use a cross domain load the same as urls that start with "http".
* Added more unit tests for offset. Fixed an offset issue relating to table ↵Brandon Aaron2007-12-125-3/+201
| | | | header cells in Opera
* Fixed a bug in clone where it wouldn't work on an XML node in IE. Also ↵David Serduke2007-12-121-1/+11
| | | | added unit test for it.
* Fix #1987 by only doing remote <script> type ajax with GET requests. All ↵David Serduke2007-12-111-0/+19
| | | | other types will be passed on to XMLHttpRequest.
* Fixed #1959 by postponing ALL script evaluations till the html insertion is ↵David Serduke2007-12-101-1/+2
| | | | done. Before the code would immediately execute any scripts that weren't in subelements if no subelements prior had scripts in them (i.e. once any script was postponed they all were). This could cause inconsistent behavior. Since, at this time, we have to postpone some scripts it makes more sense to postpone them all.
* show is now element aware (#960)Brandon Aaron2007-12-082-1/+26
|
* Fix for #1486. Prevent IE from throwing an error when triggering focus on ↵Brandon Aaron2007-12-081-1/+11
| | | | hidden input.
* Fixed #1039 and #1733 by going through the core API and making them text ↵David Serduke2007-12-074-50/+146
| | | | node and comment node safe.
* Added ajax error messages in the unit test suite because Safari was ↵David Serduke2007-12-061-0/+44
| | | | sometimes tossing errors that were being ignored and that caused a freeze in the test suite.
* Fix for #2002Jörn Zaefferer2007-12-061-2/+5
|
* Safari sometimes stops in the test suite on the ajax section when I run the ↵David Serduke2007-12-051-5/+15
| | | | whole suite and its running on my local machine. I went ahead and put better error detection in for the test that is the culprit so it will keep going. It seems to do fine if I run it from a server. It gives xml.status as 0. Maybe this is the reason http://www.pearweb.com/javascript/XMLHttpRequest.html
* Fixed #1419 where IE failed with .text() on an XML node. This is part of a ↵David Serduke2007-12-051-3/+15
| | | | series of tickets including #1264 where the context of the DOM manipulation was a problem in xml and iframe documents.
* Fixed #1264. If you read the bug there were many proposed changes. As it ↵David Serduke2007-12-053-5/+34
| | | | | | | turned out most of them had already been implemented. The last ones necessary were in .domManip() with when a <table> was 'this' and for .text(). Adding these last changes seems to make dom and text manipulation in IE frames possible. Unit test cases were added as well. In addition "submit.gif" was removed from the test suite index.html since it didn't exist.
* Added another relative offset testBrandon Aaron2007-12-042-6/+5
|
* Added visual marker to absolute fixture for offset testingBrandon Aaron2007-12-041-2/+11
|
* Beginnings of the offset test suiteBrandon Aaron2007-12-044-0/+136
|
* Fixed #1763 by checking to see if .createElement() is available on the ↵David Serduke2007-12-041-4/+17
| | | | context and if isn't default to other contexts.
* Fixed #1438 where a filter could be set in IE but not have opacity in it. ↵David Serduke2007-12-041-1/+6
| | | | The JS error was fixed by checking to make sure 'opacity=' is in the filter before seeing what its value is.
* fixed jsdoc for equalsJörn Zaefferer2007-12-041-1/+1
|
* Fixed #1999 by replacing the 'no-cache' parameter if it is there instead of ↵David Serduke2007-12-041-1/+31
| | | | just appending.