aboutsummaryrefslogtreecommitdiff
path: root/contexts/data/lib/closure-library/closure/goog/graphics/solidfill_test.html
blob: 0282698b8988331604448cff9ce75b3da8a7f041 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!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.graphics.SolidFill</title>
<script src="../base.js"></script>
<script>
  goog.require('goog.graphics.SolidFill');
  goog.require('goog.testing.jsunit');
</script>
</head>
<body>

<script>
  function testGetColor() {
    var fill = new goog.graphics.SolidFill('#123');
    assertEquals('#123', fill.getColor());
    fill = new goog.graphics.SolidFill('#abcdef');
    assertEquals('#abcdef', fill.getColor());

    fill = new goog.graphics.SolidFill('#123', 0.5);
    assertEquals('#123', fill.getColor());
    fill = new goog.graphics.SolidFill('#abcdef', 0.5);
    assertEquals('#abcdef', fill.getColor());
  }

  function testGetOpacity() {
    // Default opacity
    var fill = new goog.graphics.SolidFill('#123');
    assertEquals(1, fill.getOpacity());

    // Opaque
    var fill = new goog.graphics.SolidFill('#123', 1);
    assertEquals(1, fill.getOpacity());

    // Semi-transparent
    fill = new goog.graphics.SolidFill('#123', 0.5);
    assertEquals(0.5, fill.getOpacity());

    // Fully transparent
    fill = new goog.graphics.SolidFill('#123', 0);
    assertEquals(0, fill.getOpacity());
  }
</script>
</body>
</html>