aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/slider/slider.html
blob: 39bcd05c3fe08944cfb3d6ef48b2ce969f3f84d8 (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
34
<!doctype html>
<html lang="en">
<head>
	<meta charset="utf-8">
	<title>jQuery UI Slider Test Suite</title>

	<script src="../../../external/requirejs/require.js"></script>
	<script src="../../lib/css.js" data-modules="core slider"></script>
	<script src="../../lib/bootstrap.js" data-widget="slider"></script>
	<style>
	#slider2.ui-slider-horizontal {
		height: 12px;
		width: 500px;
	}
	#slider2.ui-slider-vertical {
		width: 12px;
		height: 500px;
	}
	</style>
</head>
<body>

<div id="qunit"></div>
<div id="qunit-fixture">

<div id="slider1"></div>
<div id="slider2"></div>
<div id="slider3" style="position: relative; margin: 40px; width: 217px; height: 28px;">
	<div class="ui-slider-handle" style="position: absolute; height: 21px; left: 0px; bottom: 0px; width: 17px;"></div>
</div>

</div>
</body>
</html>