blob: e178a551b082dbc8b5a9c41a9f1815f45cd0bab8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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/jquery.ui.core.js"></script>
<script type="text/javascript" src="../../../ui/jquery.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>
|