Skip to content

Commit

Permalink
Added visual test page for #3736 - Some handles get stuck when using …
Browse files Browse the repository at this point in the history
…two or more handles
  • Loading branch information
rdworth committed Apr 17, 2009
1 parent fa369c5 commit bfb127f
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 1 deletion.
33 changes: 33 additions & 0 deletions tests/visual/slider/slider_ticket_3736.html
@@ -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>
1 change: 0 additions & 1 deletion tests/visual/slider/slider_ticket_3762.html
Expand Up @@ -13,7 +13,6 @@
values: [5,0],
range: true
});
$("#rangevalue").text($("#slider").slider("values", 0) + ' - ' + $("#slider").slider("values", 1));
});
</script>
</head>
Expand Down

0 comments on commit bfb127f

Please sign in to comment.