Blame view

bower_components/iron-dropdown/test/iron-dropdown.html 7.15 KB
73bcce88   luigser   COMPONENTS
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
  <!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>
    <meta charset="UTF-8">
    <title>iron-dropdown basic tests</title>
    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-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>
    <script src="../../iron-test-helpers/mock-interactions.js"></script>
  
    <link rel="import" href="../iron-dropdown.html">
    <link rel="import" href="../../test-fixture/test-fixture.html">
  
  </head>
73bcce88   luigser   COMPONENTS
26
27
28
29
30
31
32
33
34
35
  <body>
  
    <test-fixture id="TrivialDropdown">
      <template>
        <iron-dropdown>
          <div class="dropdown-content">Hello!</div>
        </iron-dropdown>
      </template>
    </test-fixture>
  
e619a3b0   Luigi Serra   Controllet cross ...
36
37
    <test-fixture id="NonLockingDropdown">
      <template>
c5169e0e   Renato De Donato   a new hope
38
39
        <iron-dropdown>
          <div class="dropdown-content" allow-outside-scroll>I don't lock scroll!</div>
e619a3b0   Luigi Serra   Controllet cross ...
40
41
42
43
        </iron-dropdown>
      </template>
    </test-fixture>
  
73bcce88   luigser   COMPONENTS
44
45
46
47
48
49
50
51
52
53
    <test-fixture id="AlignedDropdown">
      <template>
        <div style="display: block; position: relative; width: 100px; height: 100px;">
          <iron-dropdown horizontal-align="right" vertical-align="top">
            <div class="dropdown-content">Hello!</div>
          </iron-dropdown>
        </div>
      </template>
    </test-fixture>
  
73bcce88   luigser   COMPONENTS
54
55
56
57
58
59
60
61
62
63
    <test-fixture id="FocusableContentDropdown">
      <template>
        <iron-dropdown>
          <div class="dropdown-content" tabindex="0">
            <div class="subcontent" tabindex="0"></div>
          </div>
        </iron-dropdown>
      </template>
    </test-fixture>
  
73bcce88   luigser   COMPONENTS
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
    <script>
      function elementIsVisible(element) {
        var contentRect = element.getBoundingClientRect();
        var computedStyle = window.getComputedStyle(element);
  
        return computedStyle.display !== 'none' &&
          contentRect.width > 0 &&
          contentRect.height > 0;
      }
  
      suite('<iron-dropdown>', function() {
        var dropdown;
        var content;
  
        suite('basic', function() {
          setup(function() {
            dropdown = fixture('TrivialDropdown');
            content = Polymer.dom(dropdown).querySelector('.dropdown-content');
          });
  
          test('effectively hides the dropdown content', function() {
            expect(elementIsVisible(content)).to.be.equal(false);
          });
  
          test('shows dropdown content when opened', function(done) {
            dropdown.open();
  
            Polymer.Base.async(function() {
              expect(elementIsVisible(content)).to.be.equal(true);
              done();
            });
          });
  
          test('hides dropdown content when outside is clicked', function(done) {
            dropdown.open();
  
            Polymer.Base.async(function() {
              expect(elementIsVisible(content)).to.be.equal(true);
  
c5169e0e   Renato De Donato   a new hope
103
104
              MockInteractions.downAndUp(document.body, function() {
  
73bcce88   luigser   COMPONENTS
105
106
107
108
                Polymer.Base.async(function() {
                  expect(elementIsVisible(content)).to.be.equal(false);
                  done();
                }, 100);
c5169e0e   Renato De Donato   a new hope
109
              });
73bcce88   luigser   COMPONENTS
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
            });
          });
  
          suite('when content is focusable', function() {
            setup(function() {
              dropdown = fixture('FocusableContentDropdown');
              content = Polymer.dom(dropdown).querySelector('.dropdown-content');
            });
            test('focuses the content when opened', function(done) {
              dropdown.open();
  
              Polymer.Base.async(function() {
                expect(document.activeElement).to.be.equal(content);
                done();
              });
            });
  
            test('focuses a configured focus target', function(done) {
              var focusableChild = Polymer.dom(content).querySelector('div[tabindex]');
              dropdown.focusTarget = focusableChild;
  
              dropdown.open();
  
              Polymer.Base.async(function() {
                expect(document.activeElement).to.not.be.equal(content);
                expect(document.activeElement).to.be.equal(focusableChild);
                done();
              });
            });
          });
        });
  
e619a3b0   Luigi Serra   Controllet cross ...
142
143
144
145
146
147
148
        suite('locking scroll', function() {
          var dropdown;
  
          setup(function() {
            dropdown = fixture('NonLockingDropdown');
          });
  
c5169e0e   Renato De Donato   a new hope
149
          test('can be disabled with `allowOutsideScroll`', function() {
e619a3b0   Luigi Serra   Controllet cross ...
150
151
            dropdown.open();
  
c5169e0e   Renato De Donato   a new hope
152
153
            expect(Polymer.IronDropdownScrollManager.elementIsScrollLocked(document.body))
              .to.be.equal(false);
e619a3b0   Luigi Serra   Controllet cross ...
154
155
156
          });
        });
  
73bcce88   luigser   COMPONENTS
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
        suite('aligned dropdown', function() {
          var parent;
          setup(function() {
            parent = fixture('AlignedDropdown');
            dropdown = parent.querySelector('iron-dropdown');
          });
  
          test('can be re-aligned to the right and the top', function(done) {
            var parentRect;
            var dropdownRect;
  
            dropdown.opened = true;
  
            Polymer.Base.async(function() {
              dropdownRect = dropdown.getBoundingClientRect();
              parentRect = parent.getBoundingClientRect();
  
              // NOTE(cdata): IE10 / 11 have minor rounding errors in this case,
              // so we assert with `closeTo` and a tight threshold:
              expect(dropdownRect.top).to.be.closeTo(parentRect.top, 0.1);
              expect(dropdownRect.right).to.be.closeTo(parentRect.right, 0.1);
              done();
            }, 1);
          });
  
          test('can be re-aligned to the bottom', function(done) {
            var parentRect;
            var dropdownRect;
  
            dropdown.verticalAlign = 'bottom';
            dropdown.opened = true;
  
            Polymer.Base.async(function() {
              parentRect = parent.getBoundingClientRect();
              dropdownRect = dropdown.getBoundingClientRect();
  
              // NOTE(cdata): IE10 / 11 have minor rounding errors in this case,
              // so we assert with `closeTo` and a tight threshold:
              expect(dropdownRect.bottom).to.be.closeTo(parentRect.bottom, 0.1);
              expect(dropdownRect.right).to.be.closeTo(parentRect.right, 0.1);
              done();
            }, 1);
          });
a1a3bc73   Luigi Serra   graphs updates
200
  
c5169e0e   Renato De Donato   a new hope
201
202
203
204
          suite('with an offset', function() {
            test('is offset by the offset value when open', function() {
              var dropdownRect;
              var offsetDropdownRect;
a1a3bc73   Luigi Serra   graphs updates
205
  
c5169e0e   Renato De Donato   a new hope
206
              dropdown.opened = true;
a1a3bc73   Luigi Serra   graphs updates
207
  
c5169e0e   Renato De Donato   a new hope
208
209
              Polymer.Base.async(function() {
                dropdownRect = dropdown.getBoundingClientRect();
a1a3bc73   Luigi Serra   graphs updates
210
  
c5169e0e   Renato De Donato   a new hope
211
212
                dropdownRect.verticalOffset = 10;
                dropdownRect.horizontalOffset = -10;
a1a3bc73   Luigi Serra   graphs updates
213
  
c5169e0e   Renato De Donato   a new hope
214
                offsetDropdownRect = dropdown.getBoundingClientRect();
a1a3bc73   Luigi Serra   graphs updates
215
  
c5169e0e   Renato De Donato   a new hope
216
217
218
                expect(dropdownRect.top).to.be.equal(offsetDropdownRect.top - 10);
                expect(dropdownRect.left).to.be.equal(offsetDropdownRect.left + 10);
              }, 1);
73bcce88   luigser   COMPONENTS
219
220
221
            });
          });
  
73bcce88   luigser   COMPONENTS
222
223
224
225
226
        });
      });
    </script>
  </body>
  </html>