gecko-dev/dom/html/test/submission_flush.html
Kirk Steuber 0dc3847027 Bug 1402025 - Ensure form submission flush when unsetting relevant attributes r=bz
It seems that we were flushing any pending submission when changing the action or target attributes of a form, but not when unsetting those attributes.

MozReview-Commit-ID: E6aUnokg54k

--HG--
extra : rebase_source : 1e331b0ce03dbd77a79a8bafa6bb3ea39c6ea22b
2017-09-28 12:09:56 -07:00

14 lines
397 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>Submission Flush Test</title>
</head>
<body>
<form id="test_form" action="post_action_page.html" target="form_target" method="POST" onsubmit="return false;">
<button type="submit" id="submit_button">Submit</button>
</form>
<iframe name="form_target" id="test_frame"></iframe>
</body>
</html>