jquery-mobile/tests/unit/slider/slider_core.js

11 lines
377 B
JavaScript
Raw Permalink Normal View History

2011-10-10 21:08:19 +00:00
/*
* mobile slider unit tests
*/
(function($){
$.mobile.page.prototype.options.keepNative = "input.should-be-native";
// not testing the positive case here since's it's obviously tested elsewhere
test( "slider elements in the keepNative set shouldn't be enhanced", function() {
same( $("input.should-be-native").siblings("div.ui-slider").length, 0 );
});
})( jQuery );