| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <body> | 3 <body> |
| 4 <script src="../../js/resources/js-test-pre.js"></script> | 4 <script src="../../../resources/js-test.js"></script> |
| 5 <script src="../resources/common.js"></script> | 5 <script src="../resources/common.js"></script> |
| 6 | 6 |
| 7 <input id="tabindex30" tabindex="30"> | 7 <input id="tabindex30" tabindex="30"> |
| 8 <input id="tabindex20-1" tabindex="20"> | 8 <input id="tabindex20-1" tabindex="20"> |
| 9 <input id="time-with-tabindex20" tabindex="20" type="time"> | 9 <input id="time-with-tabindex20" tabindex="20" type="time"> |
| 10 <input id="tabindex20-3" tabindex="20"> | 10 <input id="tabindex20-3" tabindex="20"> |
| 11 <input id="tabindex10" tabindex="10"> | 11 <input id="tabindex10" tabindex="10"> |
| 12 | 12 |
| 13 <script> | 13 <script> |
| 14 if (!window.eventSender || !window.internals) | 14 if (!window.eventSender || !window.internals) |
| (...skipping 20 matching lines...) Expand all Loading... |
| 35 shouldBeEqualToString('eventSender.keyDown(tab, shift); document.activeElement.i
d', 'tabindex20-3'); | 35 shouldBeEqualToString('eventSender.keyDown(tab, shift); document.activeElement.i
d', 'tabindex20-3'); |
| 36 shouldBeEqualToString('eventSender.keyDown(tab, shift); document.activeElement.i
d', 'time-with-tabindex20'); | 36 shouldBeEqualToString('eventSender.keyDown(tab, shift); document.activeElement.i
d', 'time-with-tabindex20'); |
| 37 shouldBe('shadowRoot.activeElement.getAttribute("part")', 'lastSubField'); | 37 shouldBe('shadowRoot.activeElement.getAttribute("part")', 'lastSubField'); |
| 38 shouldBe('eventSender.keyDown(tab, shift); eventSender.keyDown(tab, shift); shad
owRoot.activeElement.getAttribute("part")', 'firstSubField'); | 38 shouldBe('eventSender.keyDown(tab, shift); eventSender.keyDown(tab, shift); shad
owRoot.activeElement.getAttribute("part")', 'firstSubField'); |
| 39 shouldBeEqualToString('eventSender.keyDown(tab, shift); document.activeElement.i
d', 'tabindex20-1'); | 39 shouldBeEqualToString('eventSender.keyDown(tab, shift); document.activeElement.i
d', 'tabindex20-1'); |
| 40 | 40 |
| 41 | 41 |
| 42 </script> | 42 </script> |
| 43 </body> | 43 </body> |
| 44 </html> | 44 </html> |
| OLD | NEW |