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

Side by Side Diff: LayoutTests/fast/forms/enctype-attribute.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 <body> 3 <body>
4 <script src="../js/resources/js-test-pre.js"></script> 4 <script src="../../resources/js-test.js"></script>
5 5
6 <p>Test enctype and formenctype attributes</p> 6 <p>Test enctype and formenctype 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>
11 <script> 11 <script>
12 var form1 = document.getElementById('f1'); 12 var form1 = document.getElementById('f1');
13 13
14 debug('Missing value default:'); 14 debug('Missing value default:');
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 shouldBe('form1.getAttribute("enctype")', '" multipart/form-data"'); 79 shouldBe('form1.getAttribute("enctype")', '" multipart/form-data"');
80 shouldBe('form1.enctype = "multipart/form-data "; form1.enctype', '"application /x-www-form-urlencoded"'); 80 shouldBe('form1.enctype = "multipart/form-data "; form1.enctype', '"application /x-www-form-urlencoded"');
81 shouldBe('form1.getAttribute("enctype")', '"multipart/form-data "'); 81 shouldBe('form1.getAttribute("enctype")', '"multipart/form-data "');
82 82
83 shouldBe('form1.enctype = "application/x-www-form-urlencoded "; form1.enctype', '"application/x-www-form-urlencoded"'); 83 shouldBe('form1.enctype = "application/x-www-form-urlencoded "; form1.enctype', '"application/x-www-form-urlencoded"');
84 84
85 debug(''); 85 debug('');
86 </script> 86 </script>
87 </body> 87 </body>
88 </html> 88 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698