summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/service-workers/service-worker/resources/form-poster.html
blob: cd11a30a5e85fed06de225348e2ef85a71748df6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<!DOCTYPE html>
<meta charset="utf-8"/>
<meta name="referrer" content="origin">
<form method="POST" id="form"></form>
<script>
function onLoad() {
  const params = new URLSearchParams(self.location.search);
  const form = document.getElementById('form');
  form.action = params.get('target');
  form.submit();
}
self.addEventListener('load', onLoad);
</script>