Lines Matching refs:response
24 function responseURL (response) {
26 // A response has an associated URL. It is a pointer to the last URL
27 // in response’s URL list and null if response’s URL list is empty.
28 const urlList = response.urlList
33 // https://fetch.spec.whatwg.org/#concept-response-location-url
34 function responseLocationURL (response, requestFragment) {
35 // 1. If response’s status is not a redirect status, then return null.
36 if (!redirectStatusSet.has(response.status)) {
41 // `Location` and response’s header list.
42 let location = response.headersList.get('location')
45 // parsing location with response’s URL.
47 location = new URL(location, responseURL(response))
91 // https://github.com/chromium/chromium/blob/94.0.4604.1/third_party/blink/renderer/core/fetch/response.cc#L116
193 // Given a request request and a response actualResponse, this algorithm
201 // 1. Let policy-tokens be the result of extracting header list values given `Referrer-Policy` and response’s header list.
279 // 2. If request’s response tainting is "cors" or request’s mode is "websocket", then append (`Origin`, serializedOrigin) to request’s header list.
528 * @see https://w3c.github.io/webappsec-subresource-integrity/#does-response-match-metadatalist
549 // 3. If response is not eligible for integrity validation, return false.