aboutsummaryrefslogtreecommitdiff
path: root/contexts/data/lib/closure-library/closure/goog/ui/twothumbslider_test.html
blob: 29cf5efce9828710d42f1d7e24231c72fcaabf84 (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
35
36
37
38
39
<!DOCTYPE html>
<html>
<!--
Copyright 2012 The Closure Library Authors. All Rights Reserved.

Use of this source code is governed by the Apache License, Version 2.0.
See the COPYING file for details.
-->
<!--
-->
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Closure Unit Tests - goog.ui.TwoThumbSlider</title>
<script src="../base.js"></script>
<script>
  goog.require('goog.testing.jsunit');
  goog.require('goog.ui.TwoThumbSlider');
</script>
</head>
<body>
<script>

var slider;

function tearDown() {
  goog.dispose(slider);
}

function testGetCssClass() {
  slider = new goog.ui.TwoThumbSlider();
  assertEquals('goog-twothumbslider-horizontal',
      slider.getCssClass(goog.ui.SliderBase.Orientation.HORIZONTAL));
  assertEquals('goog-twothumbslider-vertical',
      slider.getCssClass(goog.ui.SliderBase.Orientation.VERTICAL));
}

</script>
</body>
</html>