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

<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>