events.html
4.72 KB
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
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
103
104
105
106
107
108
109
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
142
143
144
145
146
147
148
149
150
151
152
153
<!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 lang="en">
<head>
<meta charset="UTF-8">
<title>iron-label event tests</title>
<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-test-helpers/iron-test-helpers.html">
<link rel="import" href="../iron-label.html">
</head>
<body>
<test-fixture id="Inside">
<template>
<iron-label id="inside">
TEXT <input type="checkbox">
</iron-label>
</template>
</test-fixture>
<test-fixture id="Outside">
<template>
<iron-label id="outside" for="outside-checkbox">
TEXT
</iron-label>
<input id="outside-checkbox" type="checkbox">
</template>
</test-fixture>
<test-fixture id="Reordered">
<template>
<iron-label id="reordered">
<span>TEXT</span>
<input iron-label-target type="checkbox">
</iron-label>
</template>
</test-fixture>
<script>
suite('event handling', function() {
suite('target inside', function() {
var inside, target;
setup(function() {
inside = fixture('Inside');
target = inside.firstElementChild;
});
test('target has aria-labelledby', function() {
var label = target.getAttribute('aria-labelledby');
assert.equal(label, 'inside');
});
test('tap on label goes to the target', function() {
var count = 0;
Polymer.Gestures.add(target, 'tap', function() {
count++;
});
MockInteractions.tap(inside);
assert.equal(count, 1);
});
test('tap on target does not recurse', function() {
var count = 0;
Polymer.Gestures.add(target, 'tap', function() {
count++;
});
MockInteractions.tap(target);
assert.equal(count, 1);
});
test('tap on label will "activate" target', function() {
target.checked = false;
MockInteractions.tap(inside);
assert.equal(target.checked, true);
});
});
suite('target outside', function() {
var outside, target;
setup(function() {
var temp = fixture('Outside');
outside = temp[0];
target = temp[1];
});
test('target has aria-labelledby', function() {
var label = target.getAttribute('aria-labelledby');
assert.equal(label, 'outside');
});
test('tap on label goes to the target', function() {
var count = 0;
Polymer.Gestures.add(target, 'tap', function() {
count++;
});
MockInteractions.tap(outside);
assert.equal(count, 1);
});
test('tap on label will "activate" target', function() {
target.checked = false;
MockInteractions.tap(outside);
assert.equal(target.checked, true);
});
});
suite('target by reordered', function() {
var reordered, target;
setup(function() {
reordered = fixture('Reordered');
target =
Polymer.dom(reordered).querySelector('[iron-label-target]');
});
test('target has aria-labelledby', function() {
var label = target.getAttribute('aria-labelledby');
assert.equal(label, 'reordered');
});
test('tap on label goes to the target', function() {
var count = 0;
Polymer.Gestures.add(target, 'tap', function() {
count++;
});
MockInteractions.tap(reordered);
assert.equal(count, 1);
});
test('tap on label will "activate" target', function() {
target.checked = false;
MockInteractions.tap(reordered);
assert.equal(target.checked, true);
});
});
});
</script>
</body>
</html>