file_bug386386.sjs (350B)
1 // SJS file for test_bug386386.html 2 "use strict"; 3 4 function handleRequest(request, response) { 5 response.setHeader("Cache-Control", "no-cache", false); 6 response.setHeader( 7 "Content-Type", 8 "application/xhtml+xml;charset=utf-8", 9 false 10 ); 11 response.write( 12 "%3C%3Fxml%20version%3D%221.0%22%3F%3E%0A%3Cwindow%3E%3C/window%3E" 13 ); 14 }