summaryrefslogtreecommitdiffstats
path: root/security/manager/ssl/tests/mochitest/mixedcontent/alloworigin.sjs
blob: 8e9afb098c2d3c1f321865fb4799fe4496698531 (plain)
1
2
3
4
5
6
function handleRequest(request, response)
{
  response.setStatusLine(request.httpVersion, 200, "OK");
  response.setHeader("Access-Control-Allow-Origin", "*");
  response.write("<html><body>hello!</body></html>");
}