1
0
Fork 0
firefox/layout/xul/test/file_bug386386.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

14 lines
350 B
JavaScript

// SJS file for test_bug386386.html
"use strict";
function handleRequest(request, response) {
response.setHeader("Cache-Control", "no-cache", false);
response.setHeader(
"Content-Type",
"application/xhtml+xml;charset=utf-8",
false
);
response.write(
"%3C%3Fxml%20version%3D%221.0%22%3F%3E%0A%3Cwindow%3E%3C/window%3E"
);
}