summaryrefslogtreecommitdiffstats
path: root/mobile/android/tests/browser/robocop/robocop_dynamic.sjs
blob: 58ff33e9d1eac6dfa3076ca277c4e9a681c3d571 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/**
 * Dynamically generated page whose title matches the given id.
 */

function handleRequest(request, response) {
  let id = request.queryString.match(/^id=(.*)$/)[1];
  let key = "dynamic." + id;

  response.setStatusLine(request.httpVersion, 200, null);
  response.setHeader("Content-Type", "text/html", false);
  response.setHeader("Cache-Control", "no-cache", false);
  response.write('<html>');
  response.write('<head><title>' + id + '</title><meta charset="utf-8"></head>');
  response.write('<body>');
  response.write('<h1>' + id + '</h1>');
  response.write('</body>');
  response.write('</html>');
}