Tizen 2.1 base
[platform/framework/web/web-ui-fw.git] / libs / js / jquery-mobile-1.0.1pre / tests / unit / slider / slider_core.js
1 /*
2  * mobile slider unit tests
3  */
4 (function($){
5         $.mobile.page.prototype.options.keepNative = "input.should-be-native";
6
7         // not testing the positive case here since's it's obviously tested elsewhere
8         test( "slider elements in the keepNative set shouldn't be enhanced", function() {
9                 same( $("input.should-be-native").siblings("div.ui-slider").length, 0 );
10         });
11 })( jQuery );