Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(164)

Side by Side Diff: LayoutTests/fast/forms/interactive-validation-select-crash.html

Issue 48903019: Delete js-test-post.js. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <head> 2 <head>
3 <script src="../js/resources/js-test-pre.js"></script> 3 <script src="../js/resources/js-test-pre.js"></script>
4 </head> 4 </head>
5 <body> 5 <body>
6 <p>Test for a bug that RenderBlock crashed when a validation message bubble for a select element with float:left was closing.</p> 6 <p>Test for a bug that RenderBlock crashed when a validation message bubble for a select element with float:left was closing.</p>
7 <div id=console></div> 7 <div id=console></div>
8 <form> 8 <form>
9 <select style="float:left" required> 9 <select style="float:left" required>
10 <option value="">Plese select</option> 10 <option value="">Plese select</option>
(...skipping 11 matching lines...) Expand all
22 setTimeout(finish, 0); 22 setTimeout(finish, 0);
23 } 23 }
24 function finish() { 24 function finish() {
25 testPassed('Not crashed.'); 25 testPassed('Not crashed.');
26 finishJSTest(); 26 finishJSTest();
27 } 27 }
28 28
29 document.getElementById('submit').click(); 29 document.getElementById('submit').click();
30 setTimeout(closeBubble, 0); 30 setTimeout(closeBubble, 0);
31 </script> 31 </script>
32 <script src="../js/resources/js-test-post.js"></script>
33 </body> 32 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698