diff -r 000000000000 -r 6474c204b198 dom/browser-element/mochitest/file_browserElement_XFrameOptions.sjs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/dom/browser-element/mochitest/file_browserElement_XFrameOptions.sjs Wed Dec 31 06:09:35 2014 +0100 @@ -0,0 +1,9 @@ +function handleRequest(request, response) +{ + response.setHeader("X-Frame-Options", request.queryString, false); + response.setHeader("Content-Type", "text/html", false); + + // Tests rely on this page not being entirely blank, because they take + // screenshots to determine whether this page was loaded. + response.write("
XFrameOptions test"); +}