mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
3cfaf4ea04
--HG-- extra : rebase_source : 100a084ba36f396f9f5a9d7c0695724da39592d1
10 lines
405 B
JavaScript
10 lines
405 B
JavaScript
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("<html><body>XFrameOptions test<script>alert('finish')</script></body></html>");
|
|
}
|