-
Notifications
You must be signed in to change notification settings - Fork 336
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
Stop using entry settings object #367
Comments
(Renamed the issue for correctness.) There are three uses:
|
@domenic it's Response.redirect, not on the prototype. So it's effectively a constructor. I'll make that current too. |
Thanks for the help! |
We should get web platform tests written for this, given how Chrome and Firefox are both shipping with entry... you up for it, or shall I? |
@domenic since you can probably copy-and-paste something, you? |
Yeah just was offering you the opportunity if you wanted to practice :). I'll do it. |
…ntry document's base URL. r=bz The fetch spec used to use the entry settings as the base for parsing relative Request/Response URL's, but this is no longer the case. This was changed in: whatwg/fetch#367 Update our code to match this behavior. We basically convert GetEntryDocument() to QI the global to nsGlobalWindowInner and use its ExtantDoc instead. No changes are needed for workers since its not possible to perform cross-global javascript access in worker threads.
…ntry document's base URL. r=bz The fetch spec used to use the entry settings as the base for parsing relative Request/Response URL's, but this is no longer the case. This was changed in: whatwg/fetch#367 Update our code to match this behavior. We basically convert GetEntryDocument() to QI the global to nsGlobalWindowInner and use its ExtantDoc instead. No changes are needed for workers since its not possible to perform cross-global javascript access in worker threads. UltraBlame original commit: b5432554c7bd39dd14adff8060a7f7757bb2c40e
…ntry document's base URL. r=bz The fetch spec used to use the entry settings as the base for parsing relative Request/Response URL's, but this is no longer the case. This was changed in: whatwg/fetch#367 Update our code to match this behavior. We basically convert GetEntryDocument() to QI the global to nsGlobalWindowInner and use its ExtantDoc instead. No changes are needed for workers since its not possible to perform cross-global javascript access in worker threads. UltraBlame original commit: b5432554c7bd39dd14adff8060a7f7757bb2c40e
…ntry document's base URL. r=bz The fetch spec used to use the entry settings as the base for parsing relative Request/Response URL's, but this is no longer the case. This was changed in: whatwg/fetch#367 Update our code to match this behavior. We basically convert GetEntryDocument() to QI the global to nsGlobalWindowInner and use its ExtantDoc instead. No changes are needed for workers since its not possible to perform cross-global javascript access in worker threads. UltraBlame original commit: b5432554c7bd39dd14adff8060a7f7757bb2c40e
@domenic should we just use the relevant settings object of the context object (the global object)?
The text was updated successfully, but these errors were encountered: