summaryrefslogtreecommitdiffstats
path: root/dom/security/test/general/file_framing_xfo_embed_object.sjs
blob: 56616b79303a7c3cdf536d0699ba1cf4fc85d20c (plain)
1
2
3
4
5
6
7
"use strict";

function handleRequest(request, response) {
  response.setHeader("Cache-Control", "no-cache", false);
  response.setHeader("x-frame-options", "deny", false);
  response.write("<html>doc with x-frame-options: deny</html>");
}