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

Side by Side Diff: LayoutTests/http/tests/local/formdata/send-form-data-with-empty-blob-filename.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="../../../../fast/js/resources/js-test-pre.js"></script> 4 <script src="../../../../resources/js-test.js"></script>
5 </head> 5 </head>
6 <body> 6 <body>
7 <p id="description"></p> 7 <p id="description"></p>
8 <div id="console"></div> 8 <div id="console"></div>
9 <script> 9 <script>
10 description("Test that filename passed to FormData.append() takes precedence ove r default Blob filename 'blob', even if empty."); 10 description("Test that filename passed to FormData.append() takes precedence ove r default Blob filename 'blob', even if empty.");
11 11
12 self.jsTestIsAsync = true; 12 self.jsTestIsAsync = true;
13 13
14 function runTest() 14 function runTest()
(...skipping 12 matching lines...) Expand all
27 xhr.send(formData); 27 xhr.send(formData);
28 } 28 }
29 29
30 runTest(); 30 runTest();
31 31
32 var successfullyParsed = true; 32 var successfullyParsed = true;
33 </script> 33 </script>
34 </body> 34 </body>
35 </html> 35 </html>
36 36
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698