-
Notifications
You must be signed in to change notification settings - Fork 131
New issue
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
Replace "form data set" with "entry list" to follow an HTML specifica… #210
Conversation
This patch produces:
in "Terms defined by reference" section though it should be "constructing the entry list". How to fix it? |
xhr.bs
Outdated
@@ -1792,7 +1792,8 @@ constructor must run these steps: | |||
<li><p>Let <var>fd</var> be a new {{FormData}} object. | |||
|
|||
<li><p>If <var>form</var> is given, then set <var>fd</var>'s <a for=FormData>entry list</a> to the | |||
result of <a>constructing the form data set</a> for <var>form</var>. | |||
result of <a lt="constructing the form data set">constructing the entry list</a> for |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Make this <a>constructing the entry list</a>
. This'll fail until we've updated HTML with the new term and approximately one day has passed so the cross-specification indexes have had time to update. After that we can double check and it should be okay.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Got it. Thanks!
Also use File objects for entry values rather than an abstraction. Corresponding XMLHttpRequest Standard change: whatwg/xhr#210. Fixes part of #3676.
We should also remove
now, right? |
I think the paragraph is still necessary for RFC7578, and application/x-www-form-urlencoded serializer. |
Also use File objects for entry values rather than an abstraction. Corresponding XMLHttpRequest Standard change: whatwg/xhr#210. Fixes part of whatwg#3676.
…tion change.
This is a part of whatwg/html#3676
Preview | Diff