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

Side by Side Diff: LayoutTests/fast/dom/HTMLDialogElement/submit-dialog-close-event.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 <html> 2 <html>
3 <head> 3 <head>
4 <script src="../../js/resources/js-test-pre.js"></script> 4 <script src="../../../resources/js-test.js"></script>
5 </head> 5 </head>
6 <body> 6 <body>
7 <dialog> 7 <dialog>
8 <form method="dialog"> 8 <form method="dialog">
9 <input id="goodbye" type="submit" value="Goodbye"> 9 <input id="goodbye" type="submit" value="Goodbye">
10 <input id="hello" type="submit" value="Hello"> 10 <input id="hello" type="submit" value="Hello">
11 </form> 11 </form>
12 </dialog> 12 </dialog>
13 <script> 13 <script>
14 description('Tests submitting a dialog on a close event triggered by a previous submission.'); 14 description('Tests submitting a dialog on a close event triggered by a previous submission.');
(...skipping 23 matching lines...) Expand all
38 }); 38 });
39 document.querySelector('#hello').click(); 39 document.querySelector('#hello').click();
40 } 40 }
41 41
42 if (window.testRunner) 42 if (window.testRunner)
43 testRunner.waitUntilDone(); 43 testRunner.waitUntilDone();
44 testGoodbye(); 44 testGoodbye();
45 </script> 45 </script>
46 </body> 46 </body>
47 </html> 47 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698