| | 47 | |
| | 48 | <p> |
| | 49 | <input id="input-no-tabindex" value="input no tabindex" |
| | 50 | onfocus="highlight(this)" onblur="unhighlight(this)"> |
| | 51 | <br> |
| | 52 | <input id="input-tabindex-minus-1" tabindex="-1" |
| | 53 | value='input tabindex="-1"' |
| | 54 | onfocus="highlight(this)" onblur="unhighlight(this)"> |
| | 55 | <br> |
| | 56 | <input id="input-tabindex-0" tabindex="0" value='input tabindex="0"' |
| | 57 | onfocus="highlight(this)" onblur="unhighlight(this)"> |
| | 58 | </p> |
| | 59 | |
| | 60 | <p> |
| | 61 | img no tabindex: <img id="img-no-tabindex" src="greenbox.png" alt="green box" |
| | 62 | onfocus="highlight(this)" onblur="unhighlight(this)"> |
| | 63 | <br> |
| | 64 | img tabindex="-1": <img id="img-tabindex-minus-1" src="greenbox.png" |
| | 65 | alt="green box" tabindex="-1" |
| | 66 | onfocus="highlight(this)" onblur="unhighlight(this)"> |
| | 67 | <br> |
| | 68 | img tabindex="0": <img id="img-tabindex-0" src="greenbox.png" alt="green box" |
| | 69 | tabindex="0" |
| | 70 | onfocus="highlight(this)" onblur="unhighlight(this)"> |
| | 71 | </p> |
| | 72 | |
| | 73 | <hr> |
| | 74 | |
| 44 | | <input id="input-no-tabindex" value="input with no tabindex" |
| 45 | | onfocus="highlight(this)" onblur="unhighlight(this)"> |
| 46 | | <input id="input-tabindex-minus-1" tabindex="-1" |
| 47 | | value='input with tabindex="-1"' |
| 48 | | onfocus="highlight(this)" onblur="unhighlight(this)"> |
| 49 | | <input id="input-tabindex-0" tabindex="0" value='input with tabindex="0"' |
| 50 | | onfocus="highlight(this)" onblur="unhighlight(this)"> |
| | 76 | <button onclick='focusElem("div-no-tabindex")'>focus div no tabindex</button><br> |
| | 77 | <button onclick='focusElem("div-tabindex-minus-1")'>focus div tabindex="-1"</button><br> |
| | 78 | <button onclick='focusElem("div-tabindex-0")'>focus div tabindex="0"</button><br> |
| | 79 | <button onclick='focusElem("input-no-tabindex")'>focus input no tabindex</button><br> |
| | 80 | <button onclick='focusElem("input-tabindex-minus-1")'>focus input tabindex="-1"</button><br> |
| | 81 | <button onclick='focusElem("input-tabindex-0")'>focus input tabindex="0"</button><br> |
| | 82 | <button onclick='focusElem("img-no-tabindex")'>focus img no tabindex</button><br> |
| | 83 | <button onclick='focusElem("img-tabindex-minus-1")'>focus img tabindex="-1"</button><br> |
| | 84 | <button onclick='focusElem("img-tabindex-0")'>focus img tabindex="0"</button> |