aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAblay Keldibek <atomio.ak@gmail.com>2015-03-12 13:26:24 +0600
committerScott González <scott.gonzalez@gmail.com>2015-03-12 07:21:36 -0400
commit21831f5036bd695cc2734ec3f44e97549d2f7660 (patch)
treeed4a98e6b80c4fd2d7bf502edb809cd68c72cab0
parent01c8f88c81c01a40c5bb49aa12f2073a90548801 (diff)
downloadjquery-ui-21831f5036bd695cc2734ec3f44e97549d2f7660.tar.gz
jquery-ui-21831f5036bd695cc2734ec3f44e97549d2f7660.zip
Slider: Verify value constraint with a max that is a step mismatch
Ref #10078 Closes gh-1485
-rw-r--r--tests/unit/slider/slider_methods.js12
1 files changed, 11 insertions, 1 deletions
diff --git a/tests/unit/slider/slider_methods.js b/tests/unit/slider/slider_methods.js
index cf64e3b63..d2ef1d9ce 100644
--- a/tests/unit/slider/slider_methods.js
+++ b/tests/unit/slider/slider_methods.js
@@ -58,7 +58,7 @@ test( "disable", function( assert ) {
});
test( "value", function() {
- expect( 18 );
+ expect( 19 );
$( [ false, "min", "max" ] ).each(function() {
var element = $( "<div></div>" ).slider({
range: this,
@@ -94,6 +94,16 @@ test( "value", function() {
});
element.slider( "option", "value", 2.4 );
equal( element.slider( "value" ), 2.4, "value is set to max with 0.01 step" );
+
+ element = $( "<div></div>" ).slider({
+ value: 100,
+ min: 10,
+ max: 500,
+ step: 50
+ });
+
+ element.slider( "option", "value", 510 );
+ equal( element.slider( "value" ), 460, "value is restricted to maximum valid step" );
});
//test( "values", function() {