mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
10 lines
405 B
Plaintext
10 lines
405 B
Plaintext
|
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>");
|
||
|
}
|