summaryrefslogtreecommitdiffstats
path: root/browser/components/extensions/test/browser/searchSuggestionEngine.sjs
blob: a356cbb1db0ebccfee6117ce1d0df06668d4ea02 (plain)
1
2
3
4
5
6
7
8
9
10
/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";

function handleRequest(req, resp) {
  let suffixes = ["foo", "bar"];
  let data = [req.queryString, suffixes.map(s => req.queryString + s)];
  resp.setHeader("Content-Type", "application/json", false);
  resp.write(JSON.stringify(data));
}