-
Notifications
You must be signed in to change notification settings - Fork 878
Expand file tree
/
Copy pathis-in-text-block.js
More file actions
400 lines (360 loc) · 12 KB
/
is-in-text-block.js
File metadata and controls
400 lines (360 loc) · 12 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
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
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
describe('dom.isInTextBlock', () => {
const fixture = document.getElementById('fixture');
const { shadowSupport, fixtureSetup, queryFixture } = axe.testUtils;
const isInTextBlock = axe.commons.dom.isInTextBlock;
it('returns true if the element is a node in a block of text', () => {
fixtureSetup(
'<p>Some paragraph with text ' +
' <a href="" id="link">link</a>' +
'</p>'
);
const link = document.getElementById('link');
assert.isTrue(isInTextBlock(link));
});
it('returns false if the element is a block', () => {
fixtureSetup(
'<p>Some paragraph with text ' +
' <a href="" id="link" style="display:block">link</a>' +
'</p>'
);
const link = document.getElementById('link');
assert.isFalse(isInTextBlock(link));
});
it('returns false if the element has the only text in the block', () => {
fixtureSetup('<p><a href="" id="link">link</a></p>');
const link = document.getElementById('link');
assert.isFalse(isInTextBlock(link));
});
it('returns false if there is more text in link(s) than in the rest of the block', () => {
fixtureSetup(
'<p> short text:' +
' <a href="" id="link">on a link with a very long text</a>' +
'</p>'
);
const link = document.getElementById('link');
assert.isFalse(isInTextBlock(link));
});
it('return false if there are links along side other links', () => {
fixtureSetup(
'<p>' +
' <a href="" id="link">link</a>' +
' <a href="">other link</a>' +
'</p>'
);
const link = document.getElementById('link');
assert.isFalse(isInTextBlock(link));
});
it('ignores hidden content', () => {
fixtureSetup(
'<p>' +
' <a href="" id="link">link</a>' +
' <span style="display:none">some hidden text</span>' +
'</p>'
);
const link = document.getElementById('link');
assert.isFalse(isInTextBlock(link));
});
it('ignores floated content', () => {
fixtureSetup(
'<p>' +
' <span style="float: left">A floating text in the area</span>' +
' <a href="" id="link">link</a>' +
'</p>'
);
const link = document.getElementById('link');
assert.isFalse(isInTextBlock(link));
});
it('ignores positioned content', () => {
fixtureSetup(
'<p>' +
' <span style="position:absolute;">Some absolute potitioned text</span>' +
' <a href="" id="link">link</a>' +
'</p>'
);
const link = document.getElementById('link');
assert.isFalse(isInTextBlock(link));
});
it('ignores none-text content', () => {
fixtureSetup(
'<p>' +
' <img alt="Some graphical component" src="img.png" />' +
' <a href="" id="link">link</a>' +
'</p>'
);
const link = document.getElementById('link');
assert.isFalse(isInTextBlock(link));
});
it('ignore text in the block coming before a br', () => {
fixtureSetup(
'<p>Some paragraph with text <br>' +
' <a href="" id="link">link</a>' +
'</p>'
);
const link = document.getElementById('link');
assert.isFalse(isInTextBlock(link));
});
it('ignore text in the block coming after a br', () => {
fixtureSetup(
'<p>' +
' <a href="" id="link">link</a> <br>' +
' Some paragraph with text ' +
'</p>'
);
const link = document.getElementById('link');
assert.isFalse(isInTextBlock(link));
});
it('ignore text in the block coming before and after a br', () => {
fixtureSetup(
'<p>Some paragraph with text <br>' +
' <a href="" id="link">link</a> <br>' +
' Some paragraph with text ' +
'</p>'
);
const link = document.getElementById('link');
assert.isFalse(isInTextBlock(link));
});
it('ignores text inside inline widgets and components', () => {
fixtureSetup(
'<p>' +
' <a href="" id="link">link</a>' +
' <button> My button </button>' +
' <button disabled> My disabled button </button>' +
' <span role="searchbox">My query</span>' +
' <textarea>My text content</textarea>' +
' <select><option>My first choice</option></select>' +
'</p>'
);
const link = document.getElementById('link');
assert.isFalse(isInTextBlock(link));
});
it('treats hr elements the same as br elements', () => {
fixtureSetup(
'<div>Some paragraph with text <hr>' +
' <a href="" id="link">link</a> <hr>' +
' Some paragraph with text ' +
'</div>'
);
const link = document.getElementById('link');
assert.isFalse(isInTextBlock(link));
});
it('ignore comments', () => {
fixtureSetup(
'<p><!-- Some paragraph with text -->' +
' <a href="" id="link">link</a>' +
'</p>'
);
const link = document.getElementById('link');
assert.isFalse(isInTextBlock(link));
});
(shadowSupport.v1 ? it : xit)('can reach outside a shadow tree', () => {
const div = document.createElement('div');
div.innerHTML = 'Some paragraph with text <span></span> ';
const shadow = div.querySelector('span').attachShadow({ mode: 'open' });
shadow.innerHTML = '<a href="" id="link">link</a>';
fixtureSetup(div);
const link = shadow.querySelector('#link');
assert.isTrue(isInTextBlock(link));
});
(shadowSupport.v1 ? it : xit)('can reach into a shadow tree', () => {
const div = document.createElement('div');
div.innerHTML = '<a href="" id="link">link</a>';
const shadow = div.attachShadow({ mode: 'open' });
shadow.innerHTML = '<p>Some paragraph with text <slot></slot> </p>';
fixtureSetup(div);
const link = fixture.querySelector('#link');
assert.isTrue(isInTextBlock(link));
});
(shadowSupport.v1 ? it : xit)('treats shadow DOM slots as siblings', () => {
const div = document.createElement('div');
div.innerHTML = '<br>';
const shadow = div.attachShadow({ mode: 'open' });
shadow.innerHTML =
'<p>Some paragraph with text ' +
'<slot></slot> <a href="" id="link">link</a></p>';
fixtureSetup(div);
const link = shadow.querySelector('#link');
assert.isFalse(isInTextBlock(link));
});
describe('inline-block element', () => {
it('returns false if element has widget parent', () => {
const target = queryFixture(`
<div role="button">
<button id="target">button</button>
</div>
`);
assert.isFalse(isInTextBlock(target));
});
it('returns false if element has focusable parent', () => {
const target = queryFixture(`
<div tabindex="0">
<button id="target">button</button>
</div>
`);
assert.isFalse(isInTextBlock(target));
});
it('returns false if element has text sibling', () => {
const target = queryFixture(`
<div>
Hello world
<button id="target">button</button>
</div>
`);
assert.isFalse(isInTextBlock(target));
});
it('returns false if element has inline element sibling', () => {
const target = queryFixture(`
<div>
<span>Hello world</span>
<button id="target">button</button>
</div>
`);
assert.isFalse(isInTextBlock(target));
});
it('returns false if element has inline-block element sibling', () => {
const target = queryFixture(`
<div>
<div style="display: inline-block">Hello world</div>
<button id="target">button</button>
</div>
`);
assert.isFalse(isInTextBlock(target));
});
it('returns false if element has widget element sibling', () => {
const target = queryFixture(`
<div>
<div role="button" style="display: inline">Hello world</div>
<button id="target">button</button>
</div>
`);
assert.isFalse(isInTextBlock(target));
});
it('ignores br elements', () => {
const target = queryFixture(`
<div>
<span>Hello World</span>
<br/>
<button id="target">button</button>
</div>
`);
assert.isFalse(isInTextBlock(target));
});
it('ignores hr elements', () => {
const target = queryFixture(`
<div>
<span>Hello World</span>
<hr/>
<button id="target">button</button>
</div>
`);
assert.isFalse(isInTextBlock(target));
});
it('looks at all siblings', () => {
const target = queryFixture(`
<div>
<br/>
<button id="target">button</button>
<br/>
<div role="button" style="display: inline">Hello world</div>
</div>
`);
assert.isFalse(isInTextBlock(target));
});
it('works for inline-grid', () => {
const target = queryFixture(`
<div>
<div role="button" style="display: inline">Hello world</div>
<button id="target" style="display: inline-grid">button</button>
</div>
`);
assert.isFalse(isInTextBlock(target));
});
it('works for inline-flex', () => {
const target = queryFixture(`
<div>
<div role="button" style="display: inline">Hello world</div>
<button id="target" style="display: inline-flex">button</button>
</div>
`);
assert.isFalse(isInTextBlock(target));
});
});
describe('options.noLengthCompare', () => {
it('returns true if there is any text outside the link', () => {
fixtureSetup('<p>amy <a href="" id="link">link text is longer</a></p>');
const link = document.getElementById('link');
assert.isTrue(isInTextBlock(link, { noLengthCompare: true }));
});
it('returns false if the non-widget text is only whitespace', () => {
fixtureSetup(
'<p>' +
' <a href="" id="link">link 1</a>\t\n\r' +
' <a href="">link 2</a>' +
' <a href="">link 3</a>' +
' <a href="">link 4</a>' +
'</p>'
);
const link = document.getElementById('link');
assert.isFalse(isInTextBlock(link, { noLengthCompare: true }));
});
});
describe('with options.permissive: true', () => {
it('returns true if inline-block element has text sibling', () => {
const target = queryFixture(`
<div>
Hello world
<button id="target">button</button>
</div>
`);
assert.isTrue(isInTextBlock(target, { includeInlineBlock: true }));
});
it('returns true if inline-block element has inline element sibling', () => {
const target = queryFixture(`
<div>
<span>Hello world</span>
<button id="target">button</button>
</div>
`);
assert.isTrue(isInTextBlock(target, { includeInlineBlock: true }));
});
it('returns true if inline-block element has text sibling after it', () => {
const target = queryFixture(`
<div>
<button id="target">button</button> hello world
</div>
`);
assert.isTrue(isInTextBlock(target, { includeInlineBlock: true }));
});
it('returns true if inline-block element has both inline text and a widget sibling', () => {
const target = queryFixture(`
<div>
<button>button 1</button>
<span>Hello world, goodbye mars</span>
<button id="target">button 2</button>
</div>
`);
assert.isTrue(isInTextBlock(target, { includeInlineBlock: true }));
});
it('returns false the inline text sibling is on a different line', () => {
const target = queryFixture(`
<div>
Hello
<br>
<button id="target">button</button>
<hr>
world
</div>
`);
assert.isFalse(isInTextBlock(target, { includeInlineBlock: true }));
});
it('returns true if inline-block element has a sibling on the same line', () => {
const target = queryFixture(`
<div>
Hello
<br>
world <button id="target">button 2</button>
</div>
`);
assert.isFalse(isInTextBlock(target, { includeInlineBlock: true }));
});
});
});