| <script src="../../resources/js-test-pre.js"></script> |
| <p>Test for a bug that RenderBlock crashed when a validation message bubble for a select element with float:left was closing.</p> |
| <select style="float:left" required> |
| <option value="">Plese select</option> |
| <input type=submit id=submit> |
| window.jsTestIsAsync = true; |
| // Make the <select> valid to close the validation message bubble. |
| document.getElementsByTagName('select')[0].selectedIndex = 1; |
| testPassed('Not crashed.'); |
| document.getElementById('submit').click(); |
| setTimeout(closeBubble, 0); |
| <script src="../../resources/js-test-post.js"></script> |