summaryrefslogtreecommitdiffstats
path: root/toolkit/components/places/tests/browser/history_post.sjs
blob: 08c1afe85387455508d058a2c06477d945255e69 (plain)
1
2
3
4
5
function handleRequest(request, response) {
  response.setStatusLine("1.0", 200, "OK");
  response.setHeader("Content-Type", "text/plain; charset=utf-8", false);
  response.write("Ciao");
}