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

Side by Side Diff: LayoutTests/fast/forms/method-attribute.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 <html> 2 <html>
3 <body> 3 <body>
4 <script src="../js/resources/js-test-pre.js"></script> 4 <script src="../js/resources/js-test-pre.js"></script>
5 5
6 <p>Test method and formmethod attributes</p> 6 <p>Test method and formmethod attributes</p>
7 7
8 <form id=f1></form> 8 <form id=f1></form>
9 9
10 <div id=console></div> 10 <div id=console></div>
(...skipping 13 matching lines...) Expand all
24 debug(''); 24 debug('');
25 debug('Valid values:'); 25 debug('Valid values:');
26 shouldBe('form1.method = "Post"; form1.method', '"post"'); 26 shouldBe('form1.method = "Post"; form1.method', '"post"');
27 shouldBe('form1.getAttribute("method")', '"Post"'); 27 shouldBe('form1.getAttribute("method")', '"Post"');
28 28
29 shouldBe('form1.method = "Get"; form1.method', '"get"'); 29 shouldBe('form1.method = "Get"; form1.method', '"get"');
30 shouldBe('form1.getAttribute("method")', '"Get"'); 30 shouldBe('form1.getAttribute("method")', '"Get"');
31 31
32 debug(''); 32 debug('');
33 </script> 33 </script>
34 <script src="../js/resources/js-test-post.js"></script>
35 </body> 34 </body>
36 </html> 35 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/forms/menulist-submit-without-selection.html ('k') | LayoutTests/fast/forms/min-content-form-controls.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698