summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/forms/form-submission-0/getactionurl.html
blob: 2e21828ae666e6fa1bba288914dee4587c040d72 (plain)
1
2
3
4
5
6
7
8
9
10
11
<!DOCTYPE html>
<meta charset="utf-8">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>

<iframe src="resources/getactionurl-iframe.html"></iframe>
<script>
async_test(t => {
  window.onmessage = t.step_func_done(event => assert_equals(event.data, 'PASS'));
}, `Verifies that a form element's target can be a data url.`);
</script>