diff options
-rw-r--r-- | build/tasks/testswarm.js | 1 | ||||
-rw-r--r-- | tests/unit/all.html | 1 | ||||
-rw-r--r-- | tests/unit/core/core_deprecated.html | 132 | ||||
-rw-r--r-- | tests/unit/core/core_deprecated.js | 24 | ||||
-rw-r--r-- | ui/core.js | 29 |
5 files changed, 0 insertions, 187 deletions
diff --git a/build/tasks/testswarm.js b/build/tasks/testswarm.js index aa1c52abc..44cf2c5eb 100644 --- a/build/tasks/testswarm.js +++ b/build/tasks/testswarm.js @@ -15,7 +15,6 @@ var versions = { "Autocomplete": "autocomplete/autocomplete.html", "Button": "button/button.html", "Core": "core/core.html", - "Core_deprecated": "core/core_deprecated.html", "Datepicker": "datepicker/datepicker.html", "Dialog": "dialog/dialog.html", "Draggable": "draggable/draggable.html", diff --git a/tests/unit/all.html b/tests/unit/all.html index 77daff6d5..043304f76 100644 --- a/tests/unit/all.html +++ b/tests/unit/all.html @@ -20,7 +20,6 @@ "autocomplete/autocomplete.html", "button/button.html", "core/core.html", - "core/core_deprecated.html", "datepicker/datepicker.html", "dialog/dialog.html", "draggable/draggable.html", diff --git a/tests/unit/core/core_deprecated.html b/tests/unit/core/core_deprecated.html deleted file mode 100644 index be865f77e..000000000 --- a/tests/unit/core/core_deprecated.html +++ /dev/null @@ -1,132 +0,0 @@ -<!doctype html> -<html lang="en"> -<head> - <meta charset="utf-8"> - <title>jQuery UI Core Test Suite</title> - - <script src="../../jquery.js"></script> - <link rel="stylesheet" href="../../../external/qunit/qunit.css"> - <script src="../../../external/qunit/qunit.js"></script> - <script src="../../../external/jquery-simulate/jquery.simulate.js"></script> - <script src="../testsuite.js"></script> - <script> - TestHelpers.loadResources({ - js: [ "ui/core.js" ] - }); - </script> - - <script src="core.js"></script> - <script src="selector.js"></script> - <script src="core_deprecated.js"></script> - - <script src="../swarminject.js"></script> - <style> - .zindex { - z-index: 100; - } - .absolute { - position: absolute; - } - </style> -</head> -<body> - -<div id="qunit"></div> -<div id="qunit-fixture"> - -<img src="../../images/jqueryui_32x32.png" usemap="#mymap" width="10" height="10" alt=""> -<map name="mymap"> - <area shape="rect" coords="1,1,2,2" href="foo.html" id="areaCoordsHref" alt=""> - <area href="foo.html" id="areaNoCoordsHref" alt=""> -</map> -<map name="mymap2"> - <area shape="rect" coords="1,1,2,2" href="foo.html" id="areaNoImg" alt=""> -</map> - -<form id="formNoTabindex"></form> -<form id="formTabindex" tabindex="1"></form> - -<div> - <input id="visibleAncestor-inputTypeNone"> - <input type="text" id="visibleAncestor-inputTypeText"> - <input type="checkbox" id="visibleAncestor-inputTypeCheckbox"> - <input type="radio" id="visibleAncestor-inputTypeRadio"> - <input type="button" id="visibleAncestor-inputTypeButton" value="visibleAncestor-inputTypeButton"> - <input type="hidden" id="visibleAncestor-inputTypeHidden"> - <button id="visibleAncestor-button">x</button> - <select id="visibleAncestor-select"> - <option>option</option> - </select> - <textarea id="visibleAncestor-textarea">x</textarea> - <object id="visibleAncestor-object" codebase="about:blank">xxx</object> - <a href="#" id="visibleAncestor-anchorWithHref">anchor</a> - <a id="visibleAncestor-anchorWithoutHref">anchor</a> - <span id="visibleAncestor-span">x</span> - <div id="visibleAncestor-div">x</div> - <span id="visibleAncestor-spanWithTabindex" tabindex="1">x</span> - <div id="visibleAncestor-divWithNegativeTabindex" tabindex="-1">x</div> -</div> - -<div> - <input id="disabledElement-inputTypeNone" disabled="disabled"> - <input type="text" id="disabledElement-inputTypeText" disabled="disabled"> - <input type="checkbox" id="disabledElement-inputTypeCheckbox" disabled="disabled"> - <input type="radio" id="disabledElement-inputTypeRadio" disabled="disabled"> - <input type="button" id="disabledElement-inputTypeButton" disabled="disabled" value="disabledElement-inputTypeButton"> - <input type="hidden" id="disabledElement-inputTypeHidden" disabled="disabled"> - <button id="disabledElement-button" disabled="disabled"></button> - <select id="disabledElement-select" disabled="disabled"></select> - <textarea id="disabledElement-textarea" disabled="disabled"></textarea> -</div> - -<div> - <div id="displayNoneAncestor" style="display: none;"> - <input id="displayNoneAncestor-input"> - <span tabindex="1" id="displayNoneAncestor-span">.</span> - </div> - - <div id="visibilityHiddenAncestor" style="visibility: hidden;"> - <input id="visibilityHiddenAncestor-input"> - <span tabindex="1" id="visibilityHiddenAncestor-span">.</span> - </div> - - <span tabindex="1" id="displayNone-span" style="display: none;">.</span> - <span tabindex="1" id="visibilityHidden-span" style="visibility: hidden;">.</span> - - <input id="displayNone-input" style="display: none;"> - <input id="visibilityHidden-input" style="visibility: hidden;"> -</div> - -<div> - <input id="inputTabindex0" tabindex="0"> - <input id="inputTabindex10" tabindex="10"> - <input id="inputTabindex-1" tabindex="-1"> - <input id="inputTabindex-50" tabindex="-50"> - - <span id="spanTabindex0" tabindex="0">.</span> - <span id="spanTabindex10" tabindex="10">.</span> - <span id="spanTabindex-1" tabindex="-1">.</span> - <span id="spanTabindex-50" tabindex="-50">.</span> -</div> - -<div style="width: 0; height: 0;"> - <input id="dimensionlessParent"> - <input id="dimensionlessParent-dimensionless" style="height: 0; width: 0;"> -</div> - -<div id="zIndex100" style="z-index: 100; position: absolute"> - <div id="zIndexAutoWithParent">.</div> -</div> -<div id="zIndex100ViaCSS" class="zindex"> - <div id="zIndexAutoWithParentViaCSS">.</div> -</div> -<div id="zIndex100ViaCSSPositioned" class="zindex absolute"> - <div id="zIndexAutoWithParentViaCSSPositioned">.</div> -</div> -<div id="zIndexAutoNoParent"></div> - -<div id="dimensions" style="float: left; height: 50px; width: 100px; margin: 1px 12px 11px 2px; border-style: solid; border-width: 3px 14px 13px 4px; padding: 5px 16px 15px 6px;"></div> - -</div> -</body> -</html> diff --git a/tests/unit/core/core_deprecated.js b/tests/unit/core/core_deprecated.js deleted file mode 100644 index bb06f77b2..000000000 --- a/tests/unit/core/core_deprecated.js +++ /dev/null @@ -1,24 +0,0 @@ -(function( $ ) { - -module( "core - deprecated" ); - -test( "zIndex", function() { - expect( 7 ); - var el = $( "#zIndexAutoWithParent" ), - parent = el.parent(); - equal( el.zIndex(), 100, "zIndex traverses up to find value" ); - equal( parent.zIndex(200 ), parent, "zIndex setter is chainable" ); - equal( el.zIndex(), 200, "zIndex setter changed zIndex" ); - - el = $( "#zIndexAutoWithParentViaCSS" ); - equal( el.zIndex(), 0, "zIndex traverses up to find CSS value, not found because not positioned" ); - - el = $( "#zIndexAutoWithParentViaCSSPositioned" ); - equal( el.zIndex(), 100, "zIndex traverses up to find CSS value" ); - el.parent().zIndex( 200 ); - equal( el.zIndex(), 200, "zIndex setter changed zIndex, overriding CSS" ); - - equal( $( "#zIndexAutoNoParent" ).zIndex(), 0, "zIndex never explicitly set in hierarchy" ); -}); - -})( jQuery ); diff --git a/ui/core.js b/ui/core.js index 652884e6b..5e5f6d574 100644 --- a/ui/core.js +++ b/ui/core.js @@ -223,35 +223,6 @@ $.fn.extend({ enableSelection: function() { return this.unbind( ".ui-disableSelection" ); - }, - - zIndex: function( zIndex ) { - if ( zIndex !== undefined ) { - return this.css( "zIndex", zIndex ); - } - - if ( this.length ) { - var elem = $( this[ 0 ] ), position, value; - while ( elem.length && elem[ 0 ] !== document ) { - // Ignore z-index if position is set to a value where z-index is ignored by the browser - // This makes behavior of this function consistent across browsers - // WebKit always returns auto if the element is positioned - position = elem.css( "position" ); - if ( position === "absolute" || position === "relative" || position === "fixed" ) { - // IE returns 0 when zIndex is not specified - // other browsers return a string - // we ignore the case of nested elements with an explicit value of 0 - // <div style="z-index: -10;"><div style="z-index: 0;"></div></div> - value = parseInt( elem.css( "zIndex" ), 10 ); - if ( !isNaN( value ) && value !== 0 ) { - return value; - } - } - elem = elem.parent(); - } - } - - return 0; } }); |