aboutsummaryrefslogtreecommitdiff
path: root/catapult/third_party/polymer/components/iron-collapse/test/a11y.html
blob: ddd3472b07d2afa5792b8458a37fe61e8a5e6be6 (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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!doctype html>
<!--
@license
Copyright (c) 2015 The Polymer Project Authors. All rights reserved.
This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
Code distributed by Google as part of the polymer project is also
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
-->

<html>
  <head>

    <title>iron-collapse-a11y</title>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <script src="../../webcomponentsjs/webcomponents-lite.js"></script>
    <script src="../../web-component-tester/browser.js"></script>
    <script src="../../test-fixture/test-fixture-mocha.js"></script>

    <link rel="import" href="../../test-fixture/test-fixture.html">
    <link rel="import" href="../iron-collapse.html">

  </head>
  <body>

    <test-fixture id="trivialCollapse">
      <template>
        <iron-collapse id="collapse" tabindex="0">
          <div>
            Forma temperiemque cornua sidera dissociata cornua recessit innabilis ligavit: solidumque coeptis nullus caelum sponte phoebe di regat mentisque tanta austro capacius amphitrite sui quin postquam semina fossae liquidum umor galeae coeptis caligine liberioris quin liquidum matutinis invasit posset: flexi glomeravit radiis certis invasit oppida postquam onerosior inclusum dominari opifex terris pace finxit quam aquae nunc sine altae auroram quam habentem homo totidemque scythiam in pondus ensis tegit caecoque poena lapidosos humanas coeperunt poena aetas totidem nec natura aethera locavit caelumque distinxit animalibus phoebe cingebant moderantum porrexerat terrae possedit sua sole diu summaque obliquis melioris orbem
          </div>
        </iron-collapse>
      </template>
    </test-fixture>

    <script>

      suite('a11y', function() {
        var collapse;

        setup(function () {
          collapse = fixture('trivialCollapse');
        });

        test('aria attributes', function() {
          assert.equal(collapse.getAttribute('role'), 'group');
          assert.equal(collapse.getAttribute('aria-expanded'), 'false');
          assert.equal(collapse.getAttribute('aria-hidden'), 'true');
        });

        test('set opened to true', function() {
          collapse.opened = true;
          assert.equal(collapse.getAttribute('aria-expanded'), 'true');
          assert.equal(collapse.getAttribute('aria-hidden'), 'false');
        });

        test('focus the collapse when opened', function() {
          assert.notEqual(document.activeElement, collapse);
          collapse.opened = true;
          assert.equal(document.activeElement, collapse);
        });

        a11ySuite('trivialCollapse');

      });

    </script>

  </body>
</html>