summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/forms/form-submission-target/rel-form-target.html
blob: 58611f41a9fdaea1611513e02dad87e017728f9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<!DOCTYPE html>
<title>&lt;form rel target></title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src=resources/reltester.js></script>
<div id=log></div>
<form action=resources/endpoint.html target=_blank><input type=hidden name=channelname></form>
<script>
const submitter = document.querySelector("form"),
      channelInput = document.querySelector("input");
relTester(submitter, channelInput, "<form target>");
</script>