Open
Bug 1423263
Opened 7 years ago
Updated 1 year ago
The network request list (Developer Tools -> Network) is empty after pressing the back / forward button of browser, in case of no caching.
Categories
(DevTools :: Netmonitor, defect, P4)
Tracking
(Not tracked)
UNCONFIRMED
People
(Reporter: bruinsmaarten, Unassigned)
References
(Blocks 1 open bug)
Details
User Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36
Steps to reproduce:
My Firefox version: 57.0.1 (64-bit) > Firefox is up to date
I wanted to check the caching behavior of Firefox, in case of using the back / forward button in the browser. Then I faced this bug. You can reproduce it as follows:
test-1.php (with session)
<?php
session_start();
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Test</title>
</head>
<body>
Test caching behavior ...
</body>
</html>
Response headers are i.a.:
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
1. I opened Firefox and went to: Developer Tools -> Network
2. I typed the url of test-1.php in the addressbar.
3. I pressed the back button in the browser, followed by the forward button.
Now I can see test-1.php in the network request list. So this is correct!
Now the case where it goes wrong:
test-2.php (without session)
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Test</title>
</head>
<body>
Test caching behavior ...
</body>
</html>
1. I opened Firefox and went to: Developer Tools -> Network
2. I typed the url of test-2.php in the addressbar.
3. I pressed the back button in the browser, followed by the forward button.
Now the network request list is empty, while Firefox had to show test-2.php there. Chrome is doing it correctly, but Firefox not.
Actual results:
Firefox did not show test-2.php in the network request list.
Expected results:
Firefox must show test-2.php in the network request list.
Comment 1•7 years ago
|
||
Does it work with Firefox 59?
https://www.mozilla.org/en-US/firefox/channel/desktop/
Honza
Flags: needinfo?(bruinsmaarten)
Priority: -- → P4
Reporter | ||
Comment 2•7 years ago
|
||
Sorry for late reply (holidays). But I don't have Firefox 59. I have version 57.0.4. Or you want me to install the beta version to check it? (usually I'm not working with beta versions)
Flags: needinfo?(bruinsmaarten)
Comment 3•7 years ago
|
||
(In reply to Maarten Bruins from comment #2)
> Sorry for late reply (holidays). But I don't have Firefox 59. I have version
> 57.0.4. Or you want me to install the beta version to check it?
It's the Nightly Firefox build (download from the link I sent in comment #1)
Honza
Reporter | ||
Comment 4•7 years ago
|
||
Thanks! Just tested it in: Firefox Nightly 59.0a1 (2018-01-08) (64-bit)
Still the same problem as in my first post.
Updated•7 years ago
|
Product: Firefox → DevTools
Updated•5 years ago
|
Blocks: missing-incomplete-dup-requests
Updated•2 years ago
|
Severity: normal → S3
You need to log in
before you can comment on or make changes to this bug.
Description
•