| 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="../../../../fast/js/resources/js-test-pre.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."); |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 shouldBe("filename", "''"); | 24 shouldBe("filename", "''"); |
| 25 finishJSTest(); | 25 finishJSTest(); |
| 26 } | 26 } |
| 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 <script src="../../../../fast/js/resources/js-test-post.js"></script> | |
| 35 </body> | 34 </body> |
| 36 </html> | 35 </html> |
| 37 | 36 |
| OLD | NEW |