Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/semantics/forms/form-submission-0/getactionurl.html - WPT Dashboard Interop Dashboard
<!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>