summaryrefslogtreecommitdiffstats
path: root/layout/xul/test/file_bug386386.sjs
blob: 4cd23a7909a644480c58c4dbdbf782127c71ca86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// 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"
  );
}