1
0
Fork 0
firefox/toolkit/components/passwordmgr/test/formsubmit.sjs
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

37 lines
970 B
JavaScript

function handleRequest(request, response) {
try {
reallyHandleRequest(request, response);
} catch (e) {
response.setStatusLine("1.0", 200, "AlmostOK");
response.write("Error handling request: " + e);
}
}
function reallyHandleRequest(request, response) {
let match;
// XXX I bet this doesn't work for POST requests.
let query = request.queryString;
let user = null,
pass = null;
// user=xxx
match = /user(?:name)?=([^&]*)/.exec(query);
if (match) {
user = match[1];
}
// pass=xxx
match = /pass(?:word)?=([^&]*)/.exec(query);
if (match) {
pass = match[1];
}
response.setStatusLine("1.0", 200, "OK");
response.setHeader("Content-Type", "application/xhtml+xml", false);
response.write("<html xmlns='http://www.w3.org/1999/xhtml'>");
response.write("<p>User: <span id='user'>" + user + "</span></p>\n");
response.write("<p>Pass: <span id='pass'>" + pass + "</span></p>\n");
response.write("</html>");
}