summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/forms/the-form-element/resources/form-with-action-and-base.sub.html
blob: edb101bece5afc275c3b995521be87358a4ebfd8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!doctype html>
<base href="target/"></base>

<form action="{{GET[action]}}">
  <input type="text" name="name" value="value">
  <input type="submit" value="Submit">
</form>

<script>
"use strict";

if (window.location.search.startsWith("?name=value")) {
  // The action pointed to ourself, so the form submitted something
  window.parent.success(window.location.href);
} else {
  const form = document.querySelector("form");
  form.submit();
}
</script>