Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 | 2 |
| 3 <body> | 3 <body> |
| 4 <script src="../resources/common.js"></script> | 4 <script src="../resources/common.js"></script> |
| 5 | 5 |
| 6 <script src="../../../resources/js-test.js"></script> | 6 <script src="../../../resources/js-test.js"></script> |
| 7 | 7 |
| 8 <form name=alpha> | 8 <form name=alpha> |
| 9 <input type="radio" name="fruit" id="apple"><br> | 9 <input type="radio" name="fruit" id="apple"><br> |
| 10 <input type="radio" name="fruit" id="banana"><br> | 10 <input type="radio" name="fruit" id="banana"><br> |
| (...skipping 30 matching lines...) Expand all Loading... | |
| 41 shouldBeTrue('document.getElementById("cucumber").checked'); | 41 shouldBeTrue('document.getElementById("cucumber").checked'); |
| 42 | 42 |
| 43 clickElement(document.getElementById('pumpkin')); | 43 clickElement(document.getElementById('pumpkin')); |
| 44 shouldBeTrue('document.getElementById("pumpkin").checked'); | 44 shouldBeTrue('document.getElementById("pumpkin").checked'); |
| 45 | 45 |
| 46 eventSender.keyDown('downArrow'); | 46 eventSender.keyDown('downArrow'); |
| 47 shouldBeTrue('document.getElementById("pumpkin").checked'); | 47 shouldBeTrue('document.getElementById("pumpkin").checked'); |
| 48 | 48 |
| 49 eventSender.keyDown('upArrow'); | 49 eventSender.keyDown('upArrow'); |
| 50 shouldBeTrue('document.getElementById("pumpkin").checked'); | 50 shouldBeTrue('document.getElementById("pumpkin").checked'); |
| 51 | 51 |
|
bokan
2016/05/04 12:12:13
Please remove the whitespace change to this file.
| |
| 52 </script> | 52 </script> |
| 53 </body> | 53 </body> |
| 54 </html> | 54 </html> |
|
bokan
2016/05/04 12:12:13
While you're here, please remove this </html> (the
| |
| OLD | NEW |