]> source.dussan.org Git - jquery.git/commitdiff
Core: Adjust comments & tests after dropping Safari 6 support
authorMichał Gołębiowski <m.goleb@gmail.com>
Mon, 27 Jul 2015 20:14:48 +0000 (22:14 +0200)
committerMichał Gołębiowski <m.goleb@gmail.com>
Mon, 27 Jul 2015 20:14:48 +0000 (22:14 +0200)
Support comments that mentioned only Safari < 7 were checked & updated
to account for bugs existing in newer versions as well; Safari 6 support
test results were removed.

Refs gh-2482

src/event.js
src/offset.js
test/unit/css.js
test/unit/support.js

index 04ee403d5d8e52958432ebe217edf7204dc109f4..53cfcd5ee02bc162c1c8d6208c71ae4015b1b5a5 100644 (file)
@@ -593,7 +593,7 @@ jQuery.event = {
                        event[ prop ] = originalEvent[ prop ];
                }
 
-               // Support: Safari 6.0+
+               // Support: Safari 6-8+
                // Target should not be a text node (#504, #13143)
                if ( event.target.nodeType === 3 ) {
                        event.target = event.target.parentNode;
index f0139d5effa645e092cdd267ee4e58111d291571..23a4b2a1814782115c49568d1a57d24e5914c850 100644 (file)
@@ -203,7 +203,7 @@ jQuery.each( { scrollLeft: "pageXOffset", scrollTop: "pageYOffset" }, function(
        };
 });
 
-// Support: Safari<7+, Chrome<37+
+// Support: Safari<7-8+, Chrome<37-44+
 // Add the top/left cssHooks using jQuery.fn.position
 // Webkit bug: https://bugs.webkit.org/show_bug.cgi?id=29084
 // Blink bug: https://code.google.com/p/chromium/issues/detail?id=229280
index 47db2c8f31e4d4d540f0eb16e531b13916c528f9..181695b706863264421bd1e0abdcad9d1625a823 100644 (file)
@@ -1121,7 +1121,7 @@ test( "show() after hide() should always set display to initial value (#14750)",
        equal( div.css( "display" ), "list-item", "should get last set display value" );
 });
 
-// Support: IE < 11, Safari < 7
+// Support: IE < 11
 // We have to jump through the hoops here in order to test work with "order" CSS property,
 // that some browsers do not support. This test is not, strictly speaking, correct,
 // but it's the best that we can do.
index 46f904efadd99a31d4e0d4732bf71a703ac7ca98..d62c8b988be65c63a98337a7da04ea5dd9d24653 100644 (file)
@@ -143,7 +143,7 @@ testIframeWithCallback( "Check CSP (https://developer.mozilla.org/en-US/docs/Sec
                        "radioValue": true,
                        "reliableMarginRight": true
                };
-       } else if ( /(6|7)\.0(\.\d+|) safari/i.test( userAgent ) ) {
+       } else if ( /7\.0(\.\d+|) safari/i.test( userAgent ) ) {
                expected = {
                        "ajax": true,
                        "boxSizingReliable": true,