<!DOCTYPE html> | |
<html> | |
Test passes if it does not crash. | |
<select multiple="multiple" id="select" style="-webkit-appearance: none; display: run-in;"> | |
<option></option> | |
</select> | |
<div></div> | |
<script> | |
if (window.testRunner) | |
testRunner.dumpAsText(); | |
document.body.offsetTop; | |
document.execCommand("SelectAll"); | |
var select = document.getElementById("select"); | |
select.removeChild(select.firstChild); | |
</script> | |
</html> |