Bug 1645204 Comment 5 Edit History

Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.

Is it possible to fake a response without reaching the server? Something like this (intentionally 307 instead of 302/303 to preserve the request method).

```
HTTP/1.0 307 Internal Redirect
Location: <redirectUrl here>
```
Is it possible to fake a response without reaching the server? Something like this (intentionally 307 instead of 302/303 to preserve the request method).

```
HTTP/1.0 307 Internal Redirect
Access-Control-Allow-Origin: <origin here>
Access-Control-Allow-Credentials: true
Location: <redirectUrl here>
```

Edit: include CORS headers of course.

Back to Bug 1645204 Comment 5