Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / html / crash-on-invalid-selection-index.html
blobdd22285a55f9879251113f5a3b0d9626fd3e151f
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");
11 if (window.testRunner)
12 testRunner.dumpAsText();
14 </script>