Home | History | Annotate | Download | only in chromium
      1 <body id="body">
      2 This is a test for https://bugs.webkit.org/show_bug.cgi?id=64295. Chromium sometimes crashes in a mouse event on an HTMLSelectElement if the event handler removes the element from the DOM.
      3 This test is manual because it requires a real select popup menu, which DRT doesn't provide.<br>
      4 To run, click on the select below, then select "Click me!" on the dropdown menu. We pass if the HTMLSelectElement disappears and we don't crash.
      5 <script>
      6 function handleClick(e) {
      7     if (e.target.selectedIndex != 1)
      8         return;
      9 
     10     document.getElementById("body").removeChild(document.getElementById("formDiv"));
     11     var xhr = new XMLHttpRequest();
     12     xhr.open('GET', '', true);
     13     xhr.send(null);
     14 }
     15 </script>
     16 <div id="formDiv">
     17 <form>
     18 <select onmouseup="handleClick(event);">
     19 <option></option>
     20 <option>Click me!</option>
     21 </select>
     22 </form>
     23 </div>
     24 </body>
     25