aboutsummaryrefslogtreecommitdiffstats
path: root/src/support.js
Commit message (Collapse)AuthorAgeFilesLines
* Strips IIFEs from modules; Always require built jQuery for tests.Rick Waldron2012-06-041-4/+0
|
* Fix #11443 fix. Safari 5.0.x, reliable margin? Riiight. Closes gh-792.Mike Sherov2012-05-241-1/+1
|
* Fix #11443 #11441, shut up Chrome 19 and Safari 5.0.x. Closes gh-790.Mike Sherov2012-05-221-13/+5
| | | | checkClone and appendChecked test failures in Chrome 19; reliableMarginRight failures in Safari 5.
* Inline the boxModel test, and correct unit test. Closes gh-781.Mike Sherov2012-05-181-3/+3
|
* Fix #11721. Remove jQuery.boxModel, deprecate jQuery.support.boxModel.Mike Sherov2012-05-151-2/+2
| | | | | | This removes all internal uses of `jQuery.support.boxModel`. jQuery has never run unit tests with Quirks Mode and has not even feigned support for several years, so these remnants weren't doing much except giving false hope. For now, `jQuery.support.boxModel` continues to have a value indicating whether the W3C box model is *generally* in use, but be aware that this is easily overridden on an element-by-element basis by the `box-model` CSS property. So don't trust this value.
* Fix 11004. getWH() box-sizing:border-box includes padding and border.Mike Sherov2012-04-101-6/+7
|
* Fix #10413, #10679. Fix box-sizing:border-box and add css vendor prefix support.Mike Sherov2012-04-061-0/+4
|
* Fix #10996, simplify offset code by forsaking ancient browsers.Mike Sherov2012-04-051-36/+5
|
* Followup for #7986 to fix a botched merge.Mike Sherov2012-03-021-7/+2
| | | | Okay, Jenkins, you were right this time.
* Fix #11217. WebKit clone() loses check if name follows checked attribute.Sindre Sorhus2012-03-021-0/+4
| | | | Please folks, hold your questions. We don't explain em, we just fix em.
* Fix #7986. $.support.boxModel shan't be fooled by page-level CSS.Mike Sherov2012-02-241-14/+23
|
* Fix #11337. Properly calculate $.support.reliableMarginRight.Vladislav Zarakovsky2012-02-231-21/+19
|
* When stopping a show, save showing end state instead of start state to fix ↵timmywil2012-01-201-3/+4
| | | | animation toggling issue. Fixes #10848.
* fixes #11048: make sure support tests don't modify the layout of the bodyMike Sherov2012-01-171-0/+4
|
* Fix #10639. Make percent-specified margins return px values in WebKit.Mike Sherov2011-12-061-1/+7
|
* No global vars allowed. Declare 'body' in support.timmywil2011-11-181-14/+13
|
* Remove the invisible body in support; Add temporary tests to verify correct ↵timmywil2011-11-171-101/+65
| | | | support completions for upcoming support changes.
* Move clearing the support vars to before the offset doc ready call in case ↵timmywil2011-11-101-6/+6
| | | | | | the offset tests are run synchronously. Fixes #10737. - Adding a test for this would probably slow the manipulation tests significantly, but it's simple enough.
* Remove test of the invalid object for IE9's sake; Rewrite the appropriate ↵timmywil2011-11-081-4/+5
| | | | support test for html5 clone caching. Fixes #10682
* Correct typo in support.js assigning margin-top with cssText. Fixes #10638.timmywil2011-11-021-1/+1
|
* Add return in the offset support tests if the body is not present in ↵timmywil2011-11-011-0/+6
| | | | frameset docs
* jQuery.support.supportsFixedPosition -> jQuery.support.fixedPosition; Remove ↵timmywil2011-10-311-3/+1
| | | | jQuery.offset.supportProps and reference support in offset
* Reduce bytes and minor adjustmentstimmywil2011-10-311-6/+7
|
* Construct a new container so that styles on the body are not affectedtimmywil2011-10-311-8/+14
|
* Run offset support tests at doc ready. Fixes #10613.timmywil2011-10-311-29/+28
|
* Cleanup spacing in support.js. Fixes #10601Rick Waldron2011-10-271-5/+5
|
* Fix 10558. Get the right element for checkClone; thanks zhengzongyi!Dave Methvin2011-10-241-1/+1
|
* Support setting both the enctype attribute and property (encoding in IE6/7). ↵timmywil2011-10-221-0/+3
| | | | Fixes #6743.
* Leave the opacity test unanchored in case of floating point rounding browser ↵timmywil2011-10-111-1/+1
| | | | errors; small fix in queue tests. Fixes #5145.
* updated Juriy Zaytsev's detecting event support technique link in support.jsShi Chuan2011-10-041-1/+1
|
* Fixes IE7 test suite. Keep the testElement attached and set necessary styles ↵timmywil2011-09-281-3/+6
| | | | on it to fix the offset with margin test.
* Landing pull request 509. Add a comment explaining the use of ↵Mathias Bynens2011-09-201-4/+8
| | | | | | | document.getElementsByTagName('body')[0] instead of document.body. More Details: - https://github.com/jquery/jquery/pull/509
* semicolon for jshint happinesstimmywil2011-09-191-1/+1
|
* Landing pull request 477. 1.7 jQuery.offset.supportsFixedPosition. Fixes #6809.Rick Waldron2011-09-191-1/+45
| | | | | | More Details: - https://github.com/jquery/jquery/pull/477 - http://bugs.jquery.com/ticket/6809
* Landing pull request 490. 1.7 HTML5 Support for innerHTML, clone & style. ↵Rick Waldron2011-09-191-1/+4
| | | | | | | | Fixes #6485. More Details: - https://github.com/jquery/jquery/pull/490 - http://bugs.jquery.com/ticket/6485
* Reverts broken support string. Fixes #10197rwldrn2011-09-071-1/+1
|
* Landing pull request 478. Apply fixes as noted by Diego Perini, David ↵Rick Waldron2011-09-011-4/+5
| | | | | | | | Murdoch & Mathias Bynens. Supplements #9634 Fixes #9634. More Details: - https://github.com/jquery/jquery/pull/478 - http://bugs.jquery.com/ticket/9634
* Add back the background: none setting to avoid any possible crashes in IE ↵timmywil2011-08-041-1/+2
| | | | from the support testElement. Fixes #9823.
* Non-breaking-space should achieve the same effect as a visible character. ↵Rick Waldron2011-07-251-1/+1
| | | | Fixes #9634
* Landing pull request 401. Nulling all elements created in support.js; Fixes ↵rwldrn2011-06-061-1/+1
| | | | | | | | #9471. More Details: - https://github.com/jquery/jquery/pull/401 - http://bugs.jquery.com/ticket/9471
* detachEvent is unnecessary since we're nulling div. Fixes #8873.timmywil2011-05-251-2/+1
|
* Null created elements in support to avoid leaks in IE. Tested IE6-8. Leaks ↵timmywil2011-05-251-0/+3
| | | | are contained to the byte. Fixes #9294.
* Remove unnecessary background setting in support now that we have the div ↵timmywil2011-05-251-3/+1
| | | | reversion. Test added.
* Fixes #9239. If the body is already present in the DOM, use a div within it ↵jaubourg2011-05-131-10/+22
| | | | to perform boxModel-related support tests. Unit test added.
* Landing pull request 370. Fixes #8763.Sahab Yazdani2011-05-101-1/+1
| | | | | | More Details: - https://github.com/jquery/jquery/pull/370 - https://github.com/jquery/jquery/issues/8763
* Fixes #9109. When jQuery is loaded in the body, then the fake body element ↵jaubourg2011-05-091-2/+3
| | | | used in support has to be inserted before the document's body for boxModel to be properly detected (got the hint by looking at the code in jQuery mobile). Test page added so that we can keep checking this.
* Set background to none on our mock body and remove its contents to avoid a ↵timmywil2011-05-021-1/+4
| | | | crash in IE when removing it. Fixes #9028.
* jQuery.support core style guide correction. Fixes #8978Rick Waldron2011-04-261-1/+1
|
* Combine the support tests for radioValue and appendCheckedtimmywil2011-04-221-10/+8
|
* Landing pull request 332. Appending disconnected radio or checkbox inputs ↵timmywil2011-04-211-0/+8
| | | | | | | | | and keeping checked setting Fixes #8060, #8500. More Details: - https://github.com/jquery/jquery/pull/332 - http://bugs.jquery.com/ticket/8060 - http://bugs.jquery.com/ticket/8500