file_framing_xfo_embed_object.sjs (240B)
1 "use strict"; 2 3 function handleRequest(request, response) { 4 response.setHeader("Cache-Control", "no-cache", false); 5 response.setHeader("x-frame-options", "deny", false); 6 response.write("<html>doc with x-frame-options: deny</html>"); 7 }