Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upImplement form submission for <textarea> #7850
Closed
Labels
Comments
|
I would like to work on this. |
|
Great! |
bors-servo
added a commit
that referenced
this issue
Nov 13, 2015
form submission for <textarea> and <select> Fixes #7849 and #7850. <!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/7919) <!-- Reviewable:end -->
bors-servo
added a commit
that referenced
this issue
Dec 6, 2015
form submission for <textarea> and <select> Fixes #7849 and #7850. <!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/7919) <!-- Reviewable:end -->
bors-servo
added a commit
that referenced
this issue
Dec 30, 2015
form submission for <textarea> and <select> Fixes #7849. Fixes #7850. <!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/7919) <!-- Reviewable:end -->
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
According to https://html.spec.whatwg.org/multipage/forms.html#constructing-the-form-data-set we're supposed to include
<textarea>values. There's no explicit step for this, but it's covered under 3.4 and 3.9 (and mentioned in the note at the bottom). We should implemented the//Unimplementedpiece inget_form_datasetrelated toHTMLTextareaElement; we can use theValuemethod for now, and I'll file a follow up issue for ensuring that we address the specific concerns mentioned at https://html.spec.whatwg.org/multipage/forms.html#the-textarea-element:concept-textarea-raw-value-7 .code: components/script/dom/htmltextareaelement.rs, components/script/dom/htmlformelement.rs