OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 Test passes if it does not crash. | 3 Test passes if it does not crash. |
4 <select multiple="multiple" id="select" style="-webkit-appearance: none; display
: run-in;"> | 4 <select multiple="multiple" id="select" style="-webkit-appearance: none; display
: run-in;"> |
5 <option></option> | 5 <option></option> |
6 </select> | 6 </select> |
7 <div></div> | 7 <div></div> |
8 <script> | 8 <script> |
9 if (window.layoutTestController) | 9 if (window.layoutTestController) |
10 layoutTestController.dumpAsText(); | 10 layoutTestController.dumpAsText(); |
11 | 11 |
12 document.body.offsetTop; | 12 document.body.offsetTop; |
13 document.execCommand("SelectAll"); | 13 document.execCommand("SelectAll"); |
14 var select = document.getElementById("select"); | 14 var select = document.getElementById("select"); |
15 select.removeChild(select.firstChild); | 15 select.removeChild(select.firstChild); |
16 </script> | 16 </script> |
17 </html> | 17 </html> |
OLD | NEW |