OLD | NEW |
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 Loading... |
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 |
OLD | NEW |