diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
commit | 26a029d407be480d791972afb5975cf62c9360a6 (patch) | |
tree | f435a8308119effd964b339f76abb83a57c29483 /dom/base/test/test_bug1250148.html | |
parent | Initial commit. (diff) | |
download | firefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz firefox-26a029d407be480d791972afb5975cf62c9360a6.zip |
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | dom/base/test/test_bug1250148.html | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/dom/base/test/test_bug1250148.html b/dom/base/test/test_bug1250148.html new file mode 100644 index 0000000000..b32124ded6 --- /dev/null +++ b/dom/base/test/test_bug1250148.html @@ -0,0 +1,64 @@ +<!DOCTYPE HTML> +<html> + <!-- + https://bugzilla.mozilla.org/show_bug.cgi?id=1250148 + --> + <head> + <meta charset="utf-8"> + <title>Test for Bug 1250148 - FormData and HTML submission compatibility</title> + <script src="/tests/SimpleTest/SimpleTest.js"></script> + <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/> + </head> + <body> + <form id="form" enctype="multipart/form-data"><input type="file" name="test" /></form> + <script type="application/javascript"> + +SimpleTest.waitForExplicitFinish(); + +var f = document.getElementById('form'); +var fd = new FormData(f); +var get = fd.get("test"); +ok(get instanceof File, "We want a File object."); +is(get.name, "", "We want a File with an empty name."); +is( + get.type, + "application/octet-stream", + "We want a File with type application/octet-stream." +); +is(get.size, 0, "We want a File with an empty body."); + +var getAll = fd.getAll("test"); +ok(Array.isArray(getAll), "We want an array with 1 empty File."); +is(getAll.length, 1, "We want an array with 1 empty File."); +is( + getAll[0], + get, + "We want the File returned from getAll to be that returned from get." +); + +var xhr = new XMLHttpRequest(); +xhr.open("POST", "file_bug1250148.sjs", true); +xhr.onload = function() { + var obj = JSON.parse(xhr.responseText); + + ok(Array.isArray(obj), "XHR response is an array."); + is(obj.length, 1, "XHR response array contains 1 result."); + + ok("headers" in obj[0], "XHR response has an header value"); + + ok("Content-Disposition" in obj[0].headers, "XHR response.headers array has a Content-Desposition value"); + is(obj[0].headers["Content-Disposition"], "form-data; name=\"test\"; filename=\"\"", "Correct Content-Disposition"); + + ok("Content-Type" in obj[0].headers, "XHR response.headers array has a Content-Type value"); + is(obj[0].headers["Content-Type"], "application/octet-stream", "Correct Content-Type"); + + ok("body" in obj[0], "XHR response has a body value"); + is(obj[0].body, "", "Correct body value"); + + SimpleTest.finish(); +} +xhr.send(fd); + + </script> + </body> +</html> |