summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/forms/the-form-element/resources/form-no-action-with-base.html
blob: b3599a45e6aee71c086c17fcd6d0bedb72401ee9 (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>
  <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>