We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Navigate
Request
Url
<input type="submit" />
<form>
action
method
url
body
The initial implementation:
enctype
application/x-www-form-urlencoded
multipart/form-data
Although of course these features could be implemented (although probably no point doing multipart encoding until we have file inputs)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Suggested implementation plan
Navigate
event to take aRequest
rather than aUrl
<input type="submit" />
<form>
element (if no<form>
element is found then do nothing)action
andmethod
from the<form>
<form>
for input elements (we currently support: text, textarea, radio, checkbox, and hidden).url
andbody
from form attrs and input values.Navigate
event.The initial implementation:
enctype
ofapplication/x-www-form-urlencoded
. But should maybe check formultipart/form-data
and do nothing / log warning if it is set.Although of course these features could be implemented (although probably no point doing multipart encoding until we have file inputs)
The text was updated successfully, but these errors were encountered: