| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <script src="../../../resources/js-test.js"></script> | 2 <script src="../../../resources/js-test.js"></script> |
| 3 <p>crbug.com/463486 when tab navigation skips a node with tabStop=false to chrom
e, crash happens</p> | 3 <p>crbug.com/463486 when tab navigation skips a node with tabStop=false to chrom
e, crash happens</p> |
| 4 <input id="first"><input id="second"> | 4 <input id="first"><input id="second"> |
| 5 <pre id="console"></pre> | 5 <pre id="console"></pre> |
| 6 <script> | 6 <script> |
| 7 if (window.testRunner) | |
| 8 testRunner.dumpAsText(); | |
| 9 | |
| 10 if (!window.eventSender) | 7 if (!window.eventSender) |
| 11 testFailed(''); | 8 testFailed(''); |
| 12 | 9 |
| 13 document.querySelector('#first').focus(); | 10 document.querySelector('#first').focus(); |
| 14 document.querySelector('#second').tabStop = false; | 11 document.querySelector('#second').tabStop = false; |
| 15 eventSender.keyDown('\t'); | 12 eventSender.keyDown('\t'); |
| 16 | 13 |
| 17 debug('Test finished.'); | 14 debug('Test finished.'); |
| 18 </script> | 15 </script> |
| OLD | NEW |