aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/core/selector.js
blob: 314cfd5703657a1afb427e39722f45cf9cff9076 (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
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
define( [
	"qunit",
	"jquery",
	"lib/helper",
	"ui/data",
	"ui/focusable",
	"ui/tabbable"
], function( QUnit, $, helper ) {
"use strict";

QUnit.module( "core - selectors", { afterEach: helper.moduleAfterEach }  );

QUnit.assert.isFocusable = function( selector, msg ) {
	this.push( $( selector ).is( ":focusable" ), null, null,
		msg + " - selector " + selector + " is focusable" );
};

QUnit.assert.isNotFocusable = function( selector, msg ) {
	this.push( $( selector ).length && !$( selector ).is( ":focusable" ), null, null,
		msg + " - selector " + selector + " is not focusable" );
};

QUnit.assert.isTabbable = function( selector, msg ) {
	this.push( $( selector ).is( ":tabbable" ), null, null,
		msg + " - selector " + selector + " is tabbable" );
};

QUnit.assert.isNotTabbable = function( selector, msg ) {
	this.push( $( selector ).length && !$( selector ).is( ":tabbable" ), null, null,
		msg + " - selector " + selector + " is not tabbable" );
};

QUnit.test( "data", function( assert ) {
	assert.expect( 15 );

	var element;

	function shouldHaveData( msg ) {
		assert.ok( element.is( ":data(test)" ), msg );
	}

	function shouldNotHaveData( msg ) {
		assert.ok( !element.is( ":data(test)" ), msg );
	}

	element = $( "<div>" );
	shouldNotHaveData( "data never set" );

	element = $( "<div>" ).data( "test", null );
	shouldNotHaveData( "data is null" );

	element = $( "<div>" ).data( "test", true );
	shouldHaveData( "data set to true" );

	element = $( "<div>" ).data( "test", false );
	shouldNotHaveData( "data set to false" );

	element = $( "<div>" ).data( "test", 0 );
	shouldNotHaveData( "data set to 0" );

	element = $( "<div>" ).data( "test", 1 );
	shouldHaveData( "data set to 1" );

	element = $( "<div>" ).data( "test", "" );
	shouldNotHaveData( "data set to empty string" );

	element = $( "<div>" ).data( "test", "foo" );
	shouldHaveData( "data set to string" );

	element = $( "<div>" ).data( "test", [] );
	shouldHaveData( "data set to empty array" );

	element = $( "<div>" ).data( "test", [ 1 ] );
	shouldHaveData( "data set to array" );

	element = $( "<div>" ).data( "test", {} );
	shouldHaveData( "data set to empty object" );

	element = $( "<div>" ).data( "test", { foo: "bar" } );
	shouldHaveData( "data set to object" );

	element = $( "<div>" ).data( "test", new Date() );
	shouldHaveData( "data set to date" );

	element = $( "<div>" ).data( "test", /test/ );
	shouldHaveData( "data set to regexp" );

	element = $( "<div>" ).data( "test", function() {} );
	shouldHaveData( "data set to function" );
} );

QUnit.test( "focusable - visible, enabled elements", function( assert ) {
	assert.expect( 22 );

	assert.isNotFocusable( "#formNoTabindex", "form" );
	assert.isFocusable( "#formTabindex", "form with tabindex" );
	assert.isFocusable( "#enabledFieldset input", "input in enabled fieldset" );
	assert.isNotFocusable( "#disabledFieldset input", "input in disabled fieldset" );
	assert.isFocusable( "#visibleAncestor-inputTypeNone", "input, no type" );
	assert.isFocusable( "#visibleAncestor-inputTypeText", "input, type text" );
	assert.isFocusable( "#visibleAncestor-inputTypeCheckbox", "input, type checkbox" );
	assert.isFocusable( "#visibleAncestor-inputTypeRadio", "input, type radio" );
	assert.isFocusable( "#visibleAncestor-inputTypeButton", "input, type button" );
	assert.isNotFocusable( "#visibleAncestor-inputTypeHidden", "input, type hidden" );
	assert.isFocusable( "#visibleAncestor-button", "button" );
	assert.isFocusable( "#visibleAncestor-select", "select" );
	assert.isFocusable( "#visibleAncestor-textarea", "textarea" );
	assert.isFocusable( "#visibleAncestor-object", "object" );
	assert.isFocusable( "#visibleAncestor-anchorWithHref", "anchor with href" );
	assert.isNotFocusable( "#visibleAncestor-anchorWithoutHref", "anchor without href" );
	assert.isNotFocusable( "#visibleAncestor-span", "span" );
	assert.isNotFocusable( "#visibleAncestor-div", "div" );
	assert.isFocusable( "#visibleAncestor-spanWithTabindex", "span with tabindex" );
	assert.isFocusable( "#visibleAncestor-divWithNegativeTabindex", "div with tabindex" );
	assert.isFocusable( "#nestedVisibilityInheritWithVisibleAncestor",
			"span, visibility: inherit inside visibility: visible parent" );
	assert.isFocusable( "#nestedVisibilityInheritWithVisibleAncestor-input",
			"input, visibility: inherit inside visibility: visible parent" );
} );

QUnit.test( "focusable - disabled elements", function( assert ) {
	assert.expect( 9 );

	assert.isNotFocusable( "#disabledElement-inputTypeNone", "input, no type" );
	assert.isNotFocusable( "#disabledElement-inputTypeText", "input, type text" );
	assert.isNotFocusable( "#disabledElement-inputTypeCheckbox", "input, type checkbox" );
	assert.isNotFocusable( "#disabledElement-inputTypeRadio", "input, type radio" );
	assert.isNotFocusable( "#disabledElement-inputTypeButton", "input, type button" );
	assert.isNotFocusable( "#disabledElement-inputTypeHidden", "input, type hidden" );
	assert.isNotFocusable( "#disabledElement-button", "button" );
	assert.isNotFocusable( "#disabledElement-select", "select" );
	assert.isNotFocusable( "#disabledElement-textarea", "textarea" );
} );

QUnit.test( "focusable - hidden styles", function( assert ) {
	assert.expect( 15 );

	assert.isNotFocusable( "#displayNoneAncestor-input", "input, display: none parent" );
	assert.isNotFocusable( "#displayNoneAncestor-span", "span with tabindex, display: none parent" );

	assert.isNotFocusable( "#visibilityHiddenAncestor-input", "input, visibility: hidden parent" );
	assert.isNotFocusable( "#visibilityHiddenAncestor-span", "span with tabindex, visibility: hidden parent" );

	assert.isFocusable( "#nestedVisibilityOverrideAncestor-input", "input, visibility: visible parent but visibility: hidden grandparent" );
	assert.isFocusable( "#nestedVisibilityOverrideAncestor-span", "span with tabindex, visibility: visible parent but visibility: hidden grandparent " );

	assert.isNotFocusable( "#nestedVisibilityInheritWithHiddenAncestor", "span, visibility: inherit inside visibility: hidden parent" );
	assert.isNotFocusable( "#nestedVisibilityInheritWithHiddenAncestor-input", "input, visibility: inherit inside visibility: hidden parent" );

	assert.isNotFocusable( "#displayNone-input", "input, display: none" );
	assert.isNotFocusable( "#visibilityHidden-input", "input, visibility: hidden" );
	assert.isNotFocusable( "#visibilityCollapse-input", "input, visibility: collapse" );

	assert.isNotFocusable( "#displayNone-span", "span with tabindex, display: none" );
	assert.isNotFocusable( "#visibilityHidden-span", "span with tabindex, visibility: hidden" );
	assert.isNotFocusable( "#visibilityCollapse-span", "span with tabindex, visibility: collapse" );

	assert.isNotFocusable( "#visibilityCollapse-td", "td with tabindex, visibility: collapse" );
} );

QUnit.test( "focusable - natively focusable with various tabindex", function( assert ) {
	assert.expect( 4 );

	assert.isFocusable( "#inputTabindex0", "input, tabindex 0" );
	assert.isFocusable( "#inputTabindex10", "input, tabindex 10" );
	assert.isFocusable( "#inputTabindex-1", "input, tabindex -1" );
	assert.isFocusable( "#inputTabindex-50", "input, tabindex -50" );
} );

QUnit.test( "focusable - not natively focusable with various tabindex", function( assert ) {
	assert.expect( 4 );

	assert.isFocusable( "#spanTabindex0", "span, tabindex 0" );
	assert.isFocusable( "#spanTabindex10", "span, tabindex 10" );
	assert.isFocusable( "#spanTabindex-1", "span, tabindex -1" );
	assert.isFocusable( "#spanTabindex-50", "span, tabindex -50" );
} );

QUnit.test( "focusable - area elements", function( assert ) {
	assert.expect( 3 );

	assert.isFocusable( "#areaCoordsHref", "coords and href" );
	assert.isFocusable( "#areaNoCoordsHref", "href but no coords" );
	assert.isNotFocusable( "#areaNoImg", "not associated with an image" );
} );

QUnit.test( "focusable - dimensionless parent with overflow", function( assert ) {
	assert.expect( 1 );

	assert.isFocusable( "#dimensionlessParent", "input" );
} );

QUnit.test( "tabbable - visible, enabled elements", function( assert ) {
	assert.expect( 20 );

	assert.isNotTabbable( "#formNoTabindex", "form" );
	assert.isTabbable( "#formTabindex", "form with tabindex" );
	assert.isTabbable( "#enabledFieldset input", "input in enabled fieldset" );
	assert.isNotTabbable( "#disabledFieldset input", "input in disabled fieldset" );
	assert.isTabbable( "#visibleAncestor-inputTypeNone", "input, no type" );
	assert.isTabbable( "#visibleAncestor-inputTypeText", "input, type text" );
	assert.isTabbable( "#visibleAncestor-inputTypeCheckbox", "input, type checkbox" );
	assert.isTabbable( "#visibleAncestor-inputTypeRadio", "input, type radio" );
	assert.isTabbable( "#visibleAncestor-inputTypeButton", "input, type button" );
	assert.isNotTabbable( "#visibleAncestor-inputTypeHidden", "input, type hidden" );
	assert.isTabbable( "#visibleAncestor-button", "button" );
	assert.isTabbable( "#visibleAncestor-select", "select" );
	assert.isTabbable( "#visibleAncestor-textarea", "textarea" );
	assert.isTabbable( "#visibleAncestor-object", "object" );
	assert.isTabbable( "#visibleAncestor-anchorWithHref", "anchor with href" );
	assert.isNotTabbable( "#visibleAncestor-anchorWithoutHref", "anchor without href" );
	assert.isNotTabbable( "#visibleAncestor-span", "span" );
	assert.isNotTabbable( "#visibleAncestor-div", "div" );
	assert.isTabbable( "#visibleAncestor-spanWithTabindex", "span with tabindex" );
	assert.isNotTabbable( "#visibleAncestor-divWithNegativeTabindex", "div with tabindex" );
} );

QUnit.test( "tabbable - disabled elements", function( assert ) {
	assert.expect( 9 );

	assert.isNotTabbable( "#disabledElement-inputTypeNone", "input, no type" );
	assert.isNotTabbable( "#disabledElement-inputTypeText", "input, type text" );
	assert.isNotTabbable( "#disabledElement-inputTypeCheckbox", "input, type checkbox" );
	assert.isNotTabbable( "#disabledElement-inputTypeRadio", "input, type radio" );
	assert.isNotTabbable( "#disabledElement-inputTypeButton", "input, type button" );
	assert.isNotTabbable( "#disabledElement-inputTypeHidden", "input, type hidden" );
	assert.isNotTabbable( "#disabledElement-button", "button" );
	assert.isNotTabbable( "#disabledElement-select", "select" );
	assert.isNotTabbable( "#disabledElement-textarea", "textarea" );
} );

QUnit.test( "tabbable - hidden styles", function( assert ) {
	assert.expect( 10 );

	assert.isNotTabbable( "#displayNoneAncestor-input", "input, display: none parent" );
	assert.isNotTabbable( "#displayNoneAncestor-span", "span with tabindex, display: none parent" );

	assert.isNotTabbable( "#visibilityHiddenAncestor-input", "input, visibility: hidden parent" );
	assert.isNotTabbable( "#visibilityHiddenAncestor-span", "span with tabindex, visibility: hidden parent" );

	assert.isTabbable( "#nestedVisibilityOverrideAncestor-input", "input, visibility: visible parent but visibility: hidden grandparent" );
	assert.isTabbable( "#nestedVisibilityOverrideAncestor-span", "span with tabindex, visibility: visible parent but visibility: hidden grandparent " );

	assert.isNotTabbable( "#displayNone-input", "input, display: none" );
	assert.isNotTabbable( "#visibilityHidden-input", "input, visibility: hidden" );

	assert.isNotTabbable( "#displayNone-span", "span with tabindex, display: none" );
	assert.isNotTabbable( "#visibilityHidden-span", "span with tabindex, visibility: hidden" );
} );

QUnit.test( "tabbable -  natively tabbable with various tabindex", function( assert ) {
	assert.expect( 4 );

	assert.isTabbable( "#inputTabindex0", "input, tabindex 0" );
	assert.isTabbable( "#inputTabindex10", "input, tabindex 10" );
	assert.isNotTabbable( "#inputTabindex-1", "input, tabindex -1" );
	assert.isNotTabbable( "#inputTabindex-50", "input, tabindex -50" );
} );

QUnit.test( "tabbable -  not natively tabbable with various tabindex", function( assert ) {
	assert.expect( 4 );

	assert.isTabbable( "#spanTabindex0", "span, tabindex 0" );
	assert.isTabbable( "#spanTabindex10", "span, tabindex 10" );
	assert.isNotTabbable( "#spanTabindex-1", "span, tabindex -1" );
	assert.isNotTabbable( "#spanTabindex-50", "span, tabindex -50" );
} );

QUnit.test( "tabbable - area elements", function( assert ) {
	assert.expect( 3 );

	assert.isTabbable( "#areaCoordsHref", "coords and href" );
	assert.isTabbable( "#areaNoCoordsHref", "href but no coords" );
	assert.isNotTabbable( "#areaNoImg", "not associated with an image" );
} );

QUnit.test( "tabbable - dimensionless parent with overflow", function( assert ) {
	assert.expect( 1 );

	assert.isTabbable( "#dimensionlessParent", "input" );
} );

} );