-
Notifications
You must be signed in to change notification settings - Fork 55
/
content.html
225 lines (196 loc) · 6.75 KB
/
content.html
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
154
155
156
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
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
<!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-selector-content</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<script src="../node_modules/@webcomponents/webcomponentsjs/webcomponents-bundle.js"></script>
<script src="../node_modules/wct-browser-legacy/browser.js"></script>
<style>
.iron-selected {
background: #ccc;
}
</style>
</head>
<body>
<test-fixture id="selector1">
<template>
<test-content-element selected="item0">
<div id="item0">item0</div>
<div id="item1">item1</div>
<div id="item2">item2</div>
<div id="item3">item3</div>
</test-content-element>
</template>
</test-fixture>
<test-fixture id="selector2">
<template>
<test-content-element selected="item0" selectable="item">
<item id="item0">item0</item>
<hr>
<item id="item1">item1</item>
<item id="item2">item2</item>
<hr>
<item id="item3">item3</item>
</test-content-element>
</template>
</test-fixture>
<test-fixture id="selector3-polymer1">
<template>
<test-content-element selected="item0">
<template is="dom-repeat">
<div id$="[[item.name]]">[[item.name]]</div>
</template>
</test-content-element>
</template>
</test-fixture>
<test-fixture id="selector3-polymer2">
<template>
<test-content-element selected="item0">
<dom-repeat>
<template>
<div id$="[[item.name]]">[[item.name]]</div>
</template>
</dom-repeat>
</test-content-element>
</template>
</test-fixture>
<script type="module">
import '@polymer/test-fixture/test-fixture.js';
import './content-element.js';
import {dom, flush} from '@polymer/polymer/lib/legacy/polymer.dom.js';
suite('content', function() {
var s1;
setup(function(done) {
s1 = fixture('selector1');
s1.selector.addEventListener(
'iron-items-changed', function onIronItemsChanged() {
s1.selector.removeEventListener(
'iron-items-changed', onIronItemsChanged);
done();
});
});
test('attribute selected', function() {
// check selected class
assert.isTrue(
s1.querySelector('#item0').classList.contains('iron-selected'));
});
test('set selected', function() {
// set selected
s1.selected = 'item1';
// check selected class
assert.isTrue(
s1.querySelector('#item1').classList.contains('iron-selected'));
});
test('get items', function() {
assert.equal(s1.selector.items.length, 4);
});
test('activate event', function() {
var item = s1.querySelector('#item2');
item.dispatchEvent(new CustomEvent('tap', {bubbles: true}));
// check selected class
assert.isTrue(item.classList.contains('iron-selected'));
});
test('add item dynamically', function() {
var item = document.createElement('div');
item.id = 'item4';
item.textContent = 'item4';
dom(s1).appendChild(item);
flush();
// See the note in `forceSynchronousItemUpdate`.
s1.selector.forceSynchronousItemUpdate();
// set selected
s1.selected = 'item4';
// check items length
assert.equal(s1.selector.items.length, 5);
// check selected class
assert.isTrue(
s1.querySelector('#item4').classList.contains('iron-selected'));
});
});
suite('content with selectable', function() {
var s2;
setup(function(done) {
s2 = fixture('selector2');
s2.selector.addEventListener(
'iron-items-changed', function onIronItemsChanged() {
s2.selector.removeEventListener(
'iron-items-changed', onIronItemsChanged);
done();
});
});
test('attribute selected', function() {
// check selected class
assert.isTrue(
s2.querySelector('#item0').classList.contains('iron-selected'));
});
test('set selected', function() {
// set selected
s2.selected = 'item1';
// check selected class
assert.isTrue(
s2.querySelector('#item1').classList.contains('iron-selected'));
});
test('get items', function() {
assert.equal(s2.selector.items.length, 4);
});
test('activate event', function() {
var item = s2.querySelector('#item2');
item.dispatchEvent(new CustomEvent('tap', {bubbles: true}));
// check selected class
assert.isTrue(item.classList.contains('iron-selected'));
});
test('add item dynamically', function() {
var item = document.createElement('item');
item.id = 'item4';
item.textContent = 'item4';
dom(s2).appendChild(item);
flush();
// See the note in `forceSynchronousItemUpdate`.
s2.selector.forceSynchronousItemUpdate();
// set selected
s2.selected = 'item4';
// check items length
assert.equal(s2.selector.items.length, 5);
// check selected class
assert.isTrue(
s2.querySelector('#item4').classList.contains('iron-selected'));
});
});
suite('content with dom-repeat', function() {
var s3;
var domRepeat;
setup(function() {
s3 = fixture('selector3-polymer2');
domRepeat = s3.querySelector('dom-repeat');
});
test('supports repeated children', function() {
domRepeat.items =
[{name: 'item0'}, {name: 'item1'}, {name: 'item2'}, {name: 'item3'}];
domRepeat.render();
// See the note in `forceSynchronousItemUpdate`.
s3.selector.forceSynchronousItemUpdate();
// check selected
assert.equal(s3.selected, 'item0');
// check selected class
assert.isTrue(
s3.querySelector('#item0').classList.contains('iron-selected'));
// set selected
s3.selected = 'item2';
// check selected class
assert.isTrue(
s3.querySelector('#item2').classList.contains('iron-selected'));
});
});
</script>
</body>
</html>