aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/css.js
Commit message (Collapse)AuthorAgeFilesLines
...
* Move size() test to deprecated.js and avoid in other tests. Close gh-1237.Michał Gołębiowski2013-04-081-1/+1
|
* Improve CSS and `Support:` comments. Close gh-1220.Michał Gołębiowski2013-04-061-1/+2
| | | | | | | | 1) corrected box-sizing rules order - the unprefixed value should always be the last one 2) removed last semi-colons in CSS rules 3) updated support comments code review changes + more consistent comment spacing
* Fix #13539: Utilize Sizzle hooks. Close gh-1215.Richard Gibson2013-04-051-2/+2
| | | | (cherry picked from commit 4ef516903e6e48bce388ca47c1ed88a447199fa1)
* No ticket: Revise unit tests in anticipation of Sizzle-free buildsRichard Gibson2013-02-221-5/+5
|
* Fix #13310. Get the right display value for disconnected nodes. Close gh-1156.Oleg2013-02-041-0/+23
|
* Magic fixing for previous commitTimmy Willison2013-01-301-6/+6
|
* Fix failing tests, add support for empty spans in Opera. Supplements #13132, ↵Timmy Willison2013-01-211-1/+5
| | | | #10406.
* Treat an element as hidden if either offsetWidth or offsetHeight is 0. Fixes ↵Timmy Willison2013-01-211-40/+43
| | | | #13132, #10406.
* Ref #8908. Update IE9 css clone fix. Close gh-1119.Oleg2013-01-081-2/+5
|
* Remove stranded support.js checks for oldIE.Dave Methvin2013-01-031-41/+1
|
* Ref #8908, gh-886. Avoid clone identity crisis in IE9/10. Close gh-1036.Oleg2012-12-131-0/+77
|
* Fix #12990. Don't add 'px' to column-count. Close gh-1050.Bennett Sorbo2012-12-111-4/+13
|
* Fixes #11938: Adding array getter method to jQuery.fn.cssMike Sherov2012-12-111-0/+16
|
* Fix #12904: Firefox defaultDisplay with body/iframe display:none. Report and ↵Richard Gibson2012-12-081-17/+31
| | | | solution by @maranomynet; test by @rwldrn.
* No ticket: remove test suite external dependenciesRichard Gibson2012-11-011-1/+1
|
* Fix #12685. Handle inconsistent opacity for ie < 9. Close gh-1005.yiminghe2012-10-301-0/+16
|
* Fix #10416. Don't trust computed styles on detached elements. Close gh-941.Oleg2012-10-281-5/+15
|
* Adds missing expect() call, fixes failing IE testsRick Waldron2012-10-151-0/+1
|
* Remove duplicate expect. Add QUnit.config.requireExpects to testrunner.js ↵Rick Waldron2012-10-151-2/+2
| | | | QUnit configurations.
* Enforce expects in css.js (https://github.com/jquery/2012-dev-summit/issues/53)James Huston2012-10-151-0/+10
|
* fix failure from bad markup leaving an element behind. Closes gh-946Richard Gibson2012-10-051-1/+1
|
* body default display is always block. @mikesherov was right and this is the ↵Rick Waldron2012-10-041-0/+18
| | | | proof. Fixes #10227
* Fix #12537, element.css('filter') returns undefined in IE9. Close gh-942.Mike Sherov2012-09-301-0/+7
|
* Fix #12324, line-height "normal" isn't always "1". Close gh-898.Mike Sherov2012-08-191-2/+1
|
* Pull in unit tests from gh-877, thanks @orkel!Dave Methvin2012-07-251-5/+10
|
* Fix #12148. Let .toggle() call the public .hide() for punching.Dave Methvin2012-07-251-1/+12
| | | | There is a slightly shorter way to do this but it's not Closure-friendly.
* Fix #12088, Safari 5 and more percentages in getComputedStyleMike Sherov2012-07-221-0/+9
| | | | In particular, min-width and max-width are taunting the awesome hack. Closes gh-865.
* Make unit tests friendly to Closure Compiler. Closes gh-845.Chad Killingsworth2012-07-051-32/+32
| | | | | | Conflicts: test/unit/effects.js test/unit/offset.js
* UPDATE SIZZLE: completed rewrite for better things!timmywil2012-07-021-0/+3
| | | | Remove reverse in traversing for comma selectors. Sizzle's handling of commas is now more consistent.
* Unit tests are linted and passing.Rick Waldron2012-06-211-14/+16
|
* Fix #9505, percentage position values in Webkit, closes gh-825.Mike Sherov2012-06-151-1/+12
|
* Fix #11857. Modularize css.js, add dependency management. Closes gh-816.Mike Sherov2012-06-101-0/+4
| | | | See the pull request for more info on the dependency management details.
* Less letterSpacing .animate() fail in IE. Fixes #8627Mike Sherov2012-06-061-0/+8
|
* Make dimensions modular, adds optional build flag. Fixes #11856Mike Sherov2012-06-051-18/+11
|
* Fix #11767. Modularize build and unit tests for exluding effects.Richard Gibson2012-05-281-8/+176
| | | | Closes gh-785. To build a version of jQuery without effects, use `grunt build:*:*:-effects`. The unit tests feature-check for the interfaces and skip the unit tests for effects if they don't detect it.
* Fix #11311. Percents not pixels for top/left/bottom/right. Closes gh-793.Mike Sherov2012-05-241-0/+6
|
* Fix #10877. Make outerWidth/Height a setter. Closes gh-783.Mike Sherov2012-05-211-10/+8
|
* Makes sure child element doesn't prevent setting height to 0. Fixes failure ↵jaubourg2012-05-161-1/+1
| | | | in unit test in IE6.
* Effects: 1.8 Animation Rewrite - thanks @mikesherov and @gibson042Corey Frang2012-04-231-3/+3
|
* Fix 11004. getWH() box-sizing:border-box includes padding and border.Mike Sherov2012-04-101-0/+12
|
* When the width/height computed unit is not pixels, return that instead. ↵timmywil2011-12-121-5/+9
| | | | | | Fixes #10782. - Reordered some of css.js in preparation for jshint undef.
* Fix #8498. Add cssHooks[prop].expand for use by animate().Mike Sherov2011-12-081-0/+40
|
* Fix #10639. Make percent-specified margins return px values in WebKit.Mike Sherov2011-12-061-0/+7
|
* Fix #10796. Allow IE<9 to retrieve uncomputed styles.Mike Sherov2011-12-061-0/+23
|
* Fix #10691. Remove all instances of equals() and same(), as these are ↵Mike Sherov2011-11-061-79/+79
| | | | deprecated in QUnit.
* Landing pull request 561. only check for not null in unit tests. Supplements ↵Mike Sherov2011-10-231-1/+1
| | | | | | | | #8388. More Details: - https://github.com/jquery/jquery/pull/561 - http://bugs.jquery.com/ticket/8388
* Landing pull request 553. Fallback to elem.style for disconnected nodes in ↵Mike Sherov2011-10-221-3/+12
| | | | | | | | | width/height retrieval. Fixes #8388. More Details: - https://github.com/jquery/jquery/pull/553 - http://bugs.jquery.com/ticket/10254 - http://bugs.jquery.com/ticket/8388
* Call .is(:visible) on the window or document does not thrown an error in IE. ↵timmywil2011-09-191-5/+8
| | | | Fixes #10267.
* Fixes #10021. Allow negative relative values for `.css()` (e.g., ↵Dave Methvin2011-08-161-1/+7
| | | | `"+=-20px"`) since `.animate()` already allows it. Useful for when the relative value is a variable.
* Unit test for #6652Corey Frang2011-07-131-0/+17
|