mirror of
https://github.com/servo/servo.git
synced 2025-08-07 14:35:33 +01:00
Auto merge of #16508 - brainlessdeveloper:fetch-set-origin, r=asajeffrey
Properly set origin of fetch requests <!-- Please describe your changes on the following line: --> These changes aim to fix #15247 --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [x] `./mach build -d` does not report any errors - [x] `./mach test-tidy` does not report any errors - [x] These changes fix #15247 (github issue number if applicable). <!-- Either: --> - [ ] There are tests for these changes - [x] These changes do not require tests because cors is already tested with different origins These changes require changes in tests, but I need help with that (see comments below). <!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.--> <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. --> <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/16508) <!-- Reviewable:end -->
This commit is contained in:
commit
2bb4f65100
32 changed files with 173 additions and 529 deletions
|
@ -158,9 +158,7 @@ pub struct RequestInit {
|
|||
pub use_cors_preflight: bool,
|
||||
pub credentials_mode: CredentialsMode,
|
||||
pub use_url_credentials: bool,
|
||||
// this should actually be set by fetch, but fetch
|
||||
// doesn't have info about the client right now
|
||||
pub origin: ServoUrl,
|
||||
pub origin: ImmutableOrigin,
|
||||
// XXXManishearth these should be part of the client object
|
||||
pub referrer_url: Option<ServoUrl>,
|
||||
pub referrer_policy: Option<ReferrerPolicy>,
|
||||
|
@ -188,7 +186,7 @@ impl Default for RequestInit {
|
|||
use_cors_preflight: false,
|
||||
credentials_mode: CredentialsMode::Omit,
|
||||
use_url_credentials: false,
|
||||
origin: ServoUrl::parse("about:blank").unwrap(),
|
||||
origin: ImmutableOrigin::new_opaque(),
|
||||
referrer_url: None,
|
||||
referrer_policy: None,
|
||||
pipeline_id: None,
|
||||
|
@ -302,7 +300,7 @@ impl Request {
|
|||
|
||||
pub fn from_init(init: RequestInit) -> Request {
|
||||
let mut req = Request::new(init.url.clone(),
|
||||
Some(Origin::Origin(init.origin.origin())),
|
||||
Some(Origin::Origin(init.origin)),
|
||||
init.pipeline_id);
|
||||
req.method = init.method;
|
||||
req.headers = init.headers;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue