Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <select multiple autofocus> | |
| 3 <option selected disabled></option> | |
| 4 </select> | |
| 5 <img src="foo.bar"></img> | |
| 6 <p>PASS if it does not crash in debug.</p> | |
| 7 <script> | |
| 8 onload = function() { | |
| 9 document.execCommand("selectAll"); | |
| 10 | |
| 11 if (window.testRunner) | |
| 12 testRunner.dumpAsText(); | |
| 13 } | |
| 14 </script> | |
| OLD | NEW |