diff options
Diffstat (limited to 'src/css')
-rw-r--r-- | src/css/curCSS.js | 4 | ||||
-rw-r--r-- | src/css/showHide.js | 2 | ||||
-rw-r--r-- | src/css/support.js | 6 | ||||
-rw-r--r-- | src/css/var/getStyles.js | 2 |
4 files changed, 7 insertions, 7 deletions
diff --git a/src/css/curCSS.js b/src/css/curCSS.js index 17ea2a9d4..9054d4cf9 100644 --- a/src/css/curCSS.js +++ b/src/css/curCSS.js @@ -13,7 +13,7 @@ function curCSS( elem, name, computed ) { computed = computed || getStyles( elem ); - // Support: IE9 + // Support: IE9 only // getPropertyValue is only needed for .css('filter') (#12537) if ( computed ) { ret = computed.getPropertyValue( name ) || computed[ name ]; @@ -47,7 +47,7 @@ function curCSS( elem, name, computed ) { return ret !== undefined ? - // Support: IE9-11+ + // Support: IE9-11 only // IE returns zIndex value as an integer. ret + "" : ret; diff --git a/src/css/showHide.js b/src/css/showHide.js index 8c9b0da18..45f8f0696 100644 --- a/src/css/showHide.js +++ b/src/css/showHide.js @@ -56,7 +56,7 @@ function showHide( elements, show ) { } if ( elem.style.display === "" && jQuery.css( elem, "display" ) === "none" && - // Support: Firefox <=42 - 43 + // Support: Firefox 43+ // Don't set inline display on disconnected elements with computed display: none jQuery.contains( elem.ownerDocument, elem ) ) { diff --git a/src/css/support.js b/src/css/support.js index f8e02d048..1150485bf 100644 --- a/src/css/support.js +++ b/src/css/support.js @@ -15,7 +15,7 @@ define( [ return; } - // Support: IE9-11+ + // Support: IE9-11 only // Style of cloned element affects source element cloned (#8908) div.style.backgroundClip = "content-box"; div.cloneNode( true ).style.backgroundClip = ""; @@ -66,7 +66,7 @@ define( [ }, pixelMarginRight: function() { - // Support: Android 4.0-4.3 + // Support: Android 4.0 - 4.3 only // We're checking for boxSizingReliableVal here instead of pixelMarginRightVal // since that compresses better and they're computed together anyway. if ( boxSizingReliableVal == null ) { @@ -76,7 +76,7 @@ define( [ }, reliableMarginLeft: function() { - // Support: IE <=8 only, Android 4.0 - 4.3 only, Firefox <=3 - 37 + // Support: Android 4.0 - 4.3 only, Firefox <=3 - 44+ if ( boxSizingReliableVal == null ) { computeStyleTests(); } diff --git a/src/css/var/getStyles.js b/src/css/var/getStyles.js index 02a4b8194..f9dc5cb24 100644 --- a/src/css/var/getStyles.js +++ b/src/css/var/getStyles.js @@ -1,7 +1,7 @@ define( function() { return function( elem ) { - // Support: IE<=11+, Firefox<=30+ (#15098, #14150) + // Support: IE<=11 only, Firefox<=30+ (#15098, #14150) // IE throws on elements created in popups // FF meanwhile throws on frame elements through "defaultView.getComputedStyle" var view = elem.ownerDocument.defaultView; |