diff options
Diffstat (limited to 'mobile/android/tests/browser/robocop/robocop_dynamic.sjs')
-rw-r--r-- | mobile/android/tests/browser/robocop/robocop_dynamic.sjs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/mobile/android/tests/browser/robocop/robocop_dynamic.sjs b/mobile/android/tests/browser/robocop/robocop_dynamic.sjs new file mode 100644 index 000000000..58ff33e9d --- /dev/null +++ b/mobile/android/tests/browser/robocop/robocop_dynamic.sjs @@ -0,0 +1,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>'); +} |