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

Side by Side Diff: LayoutTests/fast/forms/form-submission-crash-successful-submit-button.html

Issue 58533003: Move fast/js/resources files to resources. (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 <body> 2 <body>
3 <script src="../js/resources/js-test-pre.js"></script> 3 <script src="../../resources/js-test.js"></script>
4 <script> 4 <script>
5 jsTestIsAsync = true; 5 jsTestIsAsync = true;
6 var form1; 6 var form1;
7 var submit1; 7 var submit1;
8 8
9 function start() { 9 function start() {
10 form1 = document.createElement('form'); 10 form1 = document.createElement('form');
11 submit1 = document.createElement('input'); 11 submit1 = document.createElement('input');
12 submit2 = document.createElement('input'); 12 submit2 = document.createElement('input');
13 submit1.type = 'submit'; 13 submit1.type = 'submit';
(...skipping 13 matching lines...) Expand all
27 27
28 function removeImage() { 28 function removeImage() {
29 form1.removeChild(submit2); 29 form1.removeChild(submit2);
30 submit2 = null; 30 submit2 = null;
31 gc(); 31 gc();
32 } 32 }
33 33
34 window.onload = start; 34 window.onload = start;
35 </script> 35 </script>
36 </body> 36 </body>
OLDNEW
« no previous file with comments | « LayoutTests/fast/forms/form-submission-crash.html ('k') | LayoutTests/fast/forms/formaction-attribute.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698