You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
According to CORS: Access-Control-Allow-Headers: "Access-Control-Allow-Headers" ":" #field-name
You can find the definition of the construct #rule in the http1.1 rfc.
Then why calling iter() on such a header: "AccessControlAllowHeaders(",x-print") (note the comma) returns an empty iterator instead of something like "", "x-print" ?
This behavior was implemented by 026949a but is not consistent with all the other header types having a #field-name as values (AccessControlExposeHeaders for instance).
The text was updated successfully, but these errors were encountered:
According to CORS:
Access-Control-Allow-Headers: "Access-Control-Allow-Headers" ":" #field-name
You can find the definition of the construct
#rule
in the http1.1 rfc.Then why calling
iter()
on such a header:"AccessControlAllowHeaders(",x-print")
(note the comma) returns an empty iterator instead of something like"", "x-print"
?This behavior was implemented by 026949a but is not consistent with all the other header types having a
#field-name
as values (AccessControlExposeHeaders for instance).The text was updated successfully, but these errors were encountered: