Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /navigation-api/navigate-event/navigate-form-onformdata-navigate-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<link rel="author" href="mailto:masonf@chromium.org">
<form onformdata="navigation.navigate('.')" method="POST"></form>
<script>
window.onload = () => {
document.querySelector('form').requestSubmit();
};
</script>