Added visual test page for #3736 - Some handles get stuck when using two or more handles

This commit is contained in:
Richard Worth 2009-04-17 14:16:09 +00:00
parent fa369c5340
commit bfb127f2d2
2 changed files with 33 additions and 1 deletions

View File

@ -0,0 +1,33 @@
<!doctype html>
<html lang="en">
<head>
<title>Slider Visual Test : Slider ticket #3736</title>
<link rel="stylesheet" href="../visual.css" type="text/css" />
<link rel="stylesheet" href="../../../themes/base/ui.all.css" type="text/css">
<script type="text/javascript" src="../../../jquery-1.3.2.js"></script>
<script type="text/javascript" src="../../../ui/ui.core.js"></script>
<script type="text/javascript" src="../../../ui/ui.slider.js"></script>
<script type="text/javascript">
$(function() {
$("#slider").slider({
values: [25, 50, 75]
});
});
</script>
</head>
<body>
<h1 class="ui-widget-header"><a href="http://dev.jqueryui.com/ticket/3736">#3736 - Some handles get stuck when using two or more handles</a></h1>
<h2>
TEST: Move all three handles with the mouse and the keyboard.
</h2>
<div id="slider"></div>
<h3>
ASSERT: Each handle can be moved along the full slider, not restricted by value of other handle(s).
</h3>
</body>
</html>

View File

@ -13,7 +13,6 @@
values: [5,0],
range: true
});
$("#rangevalue").text($("#slider").slider("values", 0) + ' - ' + $("#slider").slider("values", 1));
});
</script>
</head>