aboutsummaryrefslogtreecommitdiffstats
path: root/src/support.js
Commit message (Collapse)AuthorAgeFilesLines
* Fix reliableHiddenOffsets test was not working properly when table cells ↵Colin Snover2010-12-261-1/+1
| | | | have borders, causing unnecessary slowness in some browsers. Thanks to matjas for his $.support test page.
* Moved jQuery.props to attributes since it was only used in support. Fixes ↵Alex Sexton2010-10-251-14/+0
| | | | #6897 - suggestion by dmethvin
* We removed deleteExpando after 1.4.2, for some reason. This caused problems ↵John Resig2010-10-171-0/+10
| | | | with removeData() (no arguments). Fixes #7209.
* Fixed code convention issues. Reduced size of overflow reset code. Fixed ↵Colin Snover2010-10-081-10/+10
| | | | broken show() test cases.
* IE6 will shrink-wrap elements with layout instead of allowing content to ↵Colin Snover2010-10-051-21/+36
| | | | 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 Snover2010-10-051-0/+12
| | | | 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 Snover2010-10-051-1/+14
| | | | element in IE8. Fixes #4512.
* Some minor cleanup of the last commit.jeresig2010-09-271-4/+3
|
* Add a feature test for options inside a disabled select. Follow-up to ↵jeresig2010-09-271-1/+10
| | | | 157a383dae5335ef1056d3818d7dd70ac81c25a7.
* Fix trailing arg.John Resig2010-09-171-1/+1
|
* Make sure that jQuery works even when the individual modules are loaded ↵jeresig2010-09-081-1/+5
| | | | separately AND jQuery.noConflict(true) is used. Fixes #7011.
* Made it so that you no longer need to build jQuery in order to run the test ↵jeresig2010-03-231-1/+1
| | | | suite (but you'll still need a checkout of QUnit and Sizzle, at least).
* Landing a faster trim method. Based upon the work by Travis Hardiman and ↵jeresig2010-03-091-14/+1
| | | | DBJDBJ. More details here: http://forum.jquery.com/topic/faster-jquery-trim Fixes #2279, #4452, and #4835.
* More changes to get jQuery in line with JSLint.jeresig2010-03-011-2/+2
|
* Found a better detect for deleting an expando, added back in removeAttribute ↵jeresig2010-02-131-10/+9
| | | | as it does work in IE.
* Clean up expando removal code - only try to delete the expando from an ↵jeresig2010-02-131-0/+12
| | | | element if it's possible.
* Make sure that we don't try to use a detached node (that was in a fragment) ↵jeresig2010-02-131-0/+2
| | | | as a fragment in IE. Fixes #5829.
* Make sure that checked state is cloned properly. Based upon the patch by ↵Michael Monteleone2010-01-251-1/+10
| | | | 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 a feature detect for the attribute selected code. Fixes #5702.jeresig2009-12-221-1/+5
|
* Make sure that the correct value is being pulled from checkboxes in Webkit. ↵jeresig2009-12-221-1/+6
| | | | Fixes #5699.
* Standardize on using double-quotes for string literals.jeresig2009-12-211-1/+1
|
* Made a number of spacing changes to bring the code more-inline with the ↵jeresig2009-12-211-4/+4
| | | | jQuery Core Style Guideline.
* Tweaked a couple cases where == was used instead of ===.jeresig2009-12-211-1/+1
|
* Stop trying to emulate the focus/blur event in IE, doesn't work as one might ↵Jörn Zaefferer2009-12-211-1/+0
| | | | expect, anyway. Instead, implement the focusin/focusout events in all other browsers - which creates a much better parity across all browsers. Uses event capturing instead of bubbling to make it happen. Thanks to Alexander for the recommendation and to Joern Zaefferer for the original focus/blur delegation code.
* Work around a weird computed number issue in WebKit. Fixes #5145.John Resig2009-12-091-1/+2
|
* Moved .ready() to core.js from event.js.John Resig2009-12-071-2/+0
|
* support.js needs to come before event.js (also placed in a temporary ↵John Resig2009-12-071-0/+3
| | | | setTimeout to delay the introduction of the ready in support - will remove when ready is moved to core.js, likely later today).
* Make sure that we're doing proper focus bubble testing. Also simplified the ↵John Resig2009-12-061-0/+1
| | | | logic for the IE focusin/focusout handling.
* Adding in support for bubbling submit and change events, thanks to the patch ↵Justin Meyer2009-12-041-0/+19
| | | | by Justin Meyer. Includes a delegation test suite for manually testing to see if the events work as intended.
* Use now() in support.js instead of getTime.jeresig2009-12-031-1/+1
|
* Added useMap and frameBorder IE support to attr. Fixes #4561.John Resig2009-11-111-1/+3
|
* Opera 9.2 was interpreting .5 as 0.50, changing it to .55 lets the result be ↵John Resig2009-11-111-2/+2
| | | | the same in all browsers: 0.55. Fixes #5344.
* fix for #4397Brandon Aaron2009-05-161-0/+1
|
* fixing a few more memory leaks in IEBrandon Aaron2009-04-221-1/+2
|
* actually don't need to null out as much as i thought i did to fix that ↵Brandon Aaron2009-04-211-1/+1
| | | | memory leak
* fixing memory leaks in IEBrandon Aaron2009-04-211-0/+3
|
* remove trailing spacesBrandon Aaron2009-03-231-8/+8
|
* decoupling styles retrieval from the attr methodBrandon Aaron2009-03-221-5/+0
|
* Removed the objectAll check from jQuery.support, was causing problems with ↵John Resig2009-02-281-6/+1
| | | | broken ActiveX controls. Fixes bug #4017.
* No longer use arguments.callee or RegExp (use new RegExp, instead) for ES ↵John Resig2009-02-261-2/+2
| | | | 3.1 and Caja compatibility. Fixes jQuery bug #4251.
* Adding a tweak to prevent layout breaks in the boxModel check on IE 6. Fixes ↵John Resig2009-02-071-3/+2
| | | | bug #4014.
* Added a trailing / in the innerHTML support test to allow it to not John Resig2009-01-131-1/+1
| | | | | throw an error in XHTML documents. Fixes #3829.
* Fixed boxModel support - is now computed with feature detection, rather than ↵John Resig2009-01-111-1/+13
| | | | sniffing.
* Fixed tabindex normalization so that elements that natively support tabbing, ↵Scott González2009-01-071-5/+1
| | | | | | but don't have a tabindex explicitly set return 0 instead of undefined. Removed jQuery.support.tabindex since we're only normalizing non-XML right now and all browsers support tabIndex for HTML documents.
* Landed cross-browser support for tabIndex, by Scott, closes ticket #3649.John Resig2009-01-051-1/+6
|
* jquery support: Closes #3758, fixes a memory leak on IE. Thanks Choan Galvez.Ariel Flesler2008-12-291-1/+2
|
* Oops, forgot to commit support.js.John Resig2008-12-211-0/+99