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