2 The tabindex attribute, if specified, must have a value that is a valid integer. If the attribute is specified, it must be parsed using the rules for parsing integers. If parsing the value returns an error, the attribute is ignored for the purposes of focus management (as if it wasn't specified).
3 This element should be focusable PASSED
4 .tabIndex=10 getAttribute('tabindex')=' 10'
6 This element shouldn't be focusable PASSED
7 .tabIndex=-1 getAttribute('tabindex')='one'
9 This element should be focusable PASSED
10 .tabIndex=7 getAttribute('tabindex')='007'
12 This element should be focusable PASSED
13 .tabIndex=1 getAttribute('tabindex')='1px'
15 This element should be focusable PASSED
16 .tabIndex=0 getAttribute('tabindex')='-0'
18 This element shouldn't be focusable PASSED
19 .tabIndex=-1 getAttribute('tabindex')=''
21 This element should be focusable PASSED
22 .tabIndex=-4 getAttribute('tabindex')='-004'