Re: [fetch] Merge HTML5 and Fetch definitions of 'HTTPS state' (#241)

This doesn't really make sense. The one in HTML is a value stored on the settings object (~ the window) that is passed to certain Fetch requests made with that settings object. You can't get rid of HTML's since otherwise you wouldn't know what to pass to fetch.

In JavaScript programming terms, basically Fetch defines something like `specFetch(..., httpsState, ...)` and HTML defines `const currentSettingsObject = { ..., httpsState: <something>, ... }` and then later calls `specFetch(..., currentSettingsObject.httpsState, ... })`.

---
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/fetch/issues/241#issuecomment-194862284

Received on Thursday, 10 March 2016 14:12:04 UTC