aboutsummaryrefslogtreecommitdiffstats
path: root/src/css
Commit message (Collapse)AuthorAgeFilesLines
* Core:CSS:Event: simplification of native method signaturesOleg Gaidarenko2015-05-032-4/+4
| | | | | | | | | | | * Remove third argument from "addEventListener" * Remove third argument from "removeEventListener" * Remove second argument from "getComputedStyle" Ref gh-2047 Ref 85577a348a72ae765e0d7330b9e82985d23c94b7
* CSS: Don't expose jQuery.swapMichał Gołębiowski2015-04-131-6/+2
| | | | | | | | | jQuery.swap was an undocumented API used only internally. With the modular AMD system we currently have it's not necessary to expose this function publicly under the jQuery object. Fixes gh-2058 Closes gh-2182
* CSS: Support relative adjustment in any applicable unitMr212015-03-091-0/+61
| | | | | | | | | | | Fixes gh-1711 Closes gh-2011 (cherry picked from commit 9b03f6df88a8d9dbda3f7893cdd84e3a3c70da17) Conflicts: src/css.js src/effects.js
* CSS: Fix the pixelMarginRight support test in IE8Michał Gołębiowski2015-02-081-1/+1
|
* CSS: Add a support test for the hack for .css('marginRight') etc.Michał Gołębiowski2015-02-052-20/+35
| | | | | | | | | | | | | This hack turns out to be needed by Android 4.0-4.3. Add a support test so that the hack is invoked only where needed. Refs 3747cc642a48d2a5a8ac83069f66bddd33bea301 Refs gh-1815 Refs gh-1820 Refs gh-1842 Closes gh-2061
* CSS: simplify hack of css getter for the computed valuesOleg Gaidarenko2014-12-241-10/+2
| | | | Ref gh-1906
* CSS: simplify "defaultDisplay" moduleOleg Gaidarenko2014-12-241-1/+1
| | | | | Ref 90d7cc1d8b2ea7ac75f0eacb42439349c9c73278 Ref gh-1961
* Misc: Drop support for older browsers; update support commentsMichał Gołębiowski2014-12-083-24/+16
| | | | | | | | | | That includes IE<8, Opera 12.x, Firefox<29, Safari<6.0 and some hacks for old Blackberry. Fixes gh-1836 Fixes gh-1701 Refs gh-1815 Refs gh-1820
* CSS: Clean up memory leak in reliableMarginRightDave Methvin2014-12-021-0/+2
| | | | | | | | | | | Fixes gh-1795 Closes gh-1893 Thanks for the report flexphperia! (cherry picked from commit 7d15b4d1f181de8868c375c545a51e4dfc28a611) Conflicts: src/css/support.js
* CSS: Correct typo in the commentOleg Gaidarenko2014-09-031-1/+1
|
* CSS: Use pre-defined displays for html and bodyOleg Gaidarenko2014-09-031-1/+7
| | | | | | Ref 60f546acb1c7136092b4fd01cccff052e468cc72 Ref 274feb53cc9a99633dfac785d8b3b837d192c43c Ref a7724186c98734529b06bebb8f2dc7fc2b641011
* CSS: Remove use of getDefaultComputedStyleNazar Mokrynskyi2014-09-021-10/+2
| | | | | | Remove optimization to make jQuery compatible with Google's Polymer project Ref 274feb53cc9a99633dfac785d8b3b837d192c43c
* CSS: elements are hidden when either offsetWidth or offsetHeight is zeroTimmy Willison2014-07-171-1/+3
| | | | | | | | | | - Note: this is a breaking change that has been delayed for several versions. Fixes #10406 Fixes #13132 Conflicts: src/css/hiddenVisibleSelectors.js
* Build: update grunt-jscs-checker and pass with the new rulesTimmy Willison2014-07-173-9/+18
| | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: build/tasks/build.js src/ajax/xhr.js src/attributes/classes.js src/attributes/prop.js src/attributes/val.js src/core/init.js src/core/ready.js src/css.js src/css/curCSS.js src/css/defaultDisplay.js src/data.js src/data/var/dataPriv.js src/data/var/dataUser.js src/dimensions.js src/effects.js src/event.js src/manipulation.js src/offset.js src/queue.js src/selector-native.js test/data/testrunner.js
* CSS: Do not throw on frame elements in FFOleg Gaidarenko2014-06-161-1/+8
| | | | | | | | | | | | | IE9-10 throws on elements created in popups (see #14150), FF meanwhile throws on frame elements through "defaultView.getComputedStyle" (see #15098) Use "defaultView" if in the popup which would fix IE issue, use "window.getComputedStyle" which would fix FF issue. And everybody wins, except performance, but who cares right? Fixes #15098 Ref e488d985cfb10ab8c684bbc6a9b8ff3eae23bf83
* Css: change boxSizingReliable in IE<9.Michał Gołębiowski2014-03-211-4/+3
| | | | | | | | Change boxSizingReliable test value to false in all IE versions. Modify support comments to argument getComputedStyle guards with oldIE support and not node.js which is not supported in 1.x. Closes gh-1498
* CSS: window.getDefaultComputedStyle may return nullRodrigo Rosenfeld Rosas2014-03-201-3/+4
| | | | | | Fixes #14736 Closes gh-1501 (cherry picked from commit 51910ba8a5aff4cd1a811f1fdb76a6c62a09a666)
* Support: Simplify the box-sizing testMichał Gołębiowski2014-03-101-14/+6
| | | | Don't require body in the support.boxSizing test.
* Support: Reduce size via code consolidation and minification awarenessRichard Gibson2014-03-041-110/+65
| | | | | Ref badcd1b6f301e6253405f17759c1270549a34e12 Closes gh-1518
* Support: Skip style-based tests when element.style is undefinedRichard Gibson2014-02-131-4/+8
| | | | | | Fixes #14785 Ref #13754 Ref badcd1b6f301e6253405f17759c1270549a34e12
* Docs: Add support comments for prefixed box-sizingMichał Gołębiowski2014-02-051-0/+2
|
* Css: Document reliableMarginRight is needed for Android 2.3Michał Gołębiowski2014-01-271-0/+1
|
* Css: Fix the reliableMarginRight test in oldIE.Michał Gołębiowski2014-01-261-3/+7
| | | | This fixes an error introduced by the previous commit.
* Css: Don’t cache support.reliableMarginRight; thanks @jdalton, @timmywilMichał Gołębiowski2014-01-261-6/+5
| | | | Fixes #14731
* Fix some code style inconsistenciesOleg2013-11-073-4/+3
|
* No ticket: Small curCSS size optimizationsRichard Gibson2013-10-151-6/+8
| | | | | | | | (cherry picked from commit a339096d6a9d0313c2184de0d626e2c7e127955b) Conflicts: src/css/curCSS.js
* Fix #14432: Always return string from .css("z-index"). Close gh-1395.George Kats2013-10-151-2/+8
| | | | | | | | (cherry picked from commit 5ce4b06c285bd8cf52eaff0f39e0b9192a927873) Conflicts: src/css/curCSS.js
* No ticket. Get rid of comma expression in curCSS.Michał Gołębiowski2013-09-241-1/+1
|
* Fix #12723 and simplification and optmization of defaultDisplay helperOleg2013-09-171-9/+20
| | | | (cherry picked from commit a25343001eea2436dcf8ea60deea3844f77e42e4)
* Fix contextTimmy Willison2013-09-111-1/+1
|
* The cssHook from addGetHookIf wasn't actually getting addedTimmy Willison2013-09-111-5/+4
| | | | | Conflicts: src/css.js
* Modules can assume the presence of their parentsTimmy Willison2013-09-101-1/+0
| | | | | Conflicts: src/css/curCSS.js
* Remove unnecessary file from master cherry-pickTimmy Willison2013-09-101-5/+0
|
* Remove offset dependency from css. Move curCSS and getStyles to their own ↵Timmy Willison2013-09-104-0/+123
| | | | module.
* No ticket. Abstract conditional hook definition.Michał Gołębiowski2013-09-111-0/+33
|
* All non-var modules should not indent in their AMD wrappers (just for ↵Timmy Willison2013-09-091-17/+18
| | | | prettier builds). No functionality changes.
* No ticket. Restore checking individual src/**/*.js files by jsHint.Michał Gołębiowski2013-09-061-1/+1
|
* Remove test element in css/supportTimmy Willison2013-09-061-0/+2
|
* Fix #10814. Fix #14084. Make support tests lazy and broken out to components.Michał Gołębiowski2013-09-063-2/+223
|
* AMD-ify jQuery sourcegit s! Woo! Fixes #14113, #14163.Timmy Willison2013-08-154-0/+91
Conflicts: Gruntfile.js README.md src/ajax.js src/ajax/xhr.js src/attributes.js src/core.js src/css.js src/data.js src/effects.js src/event.js src/manipulation.js src/offset.js src/selector-native.js src/traversing.js test/unit/core.js test/unit/data.js