Issue metadata
Sign in to add a comment
|
The `content download time` seem incorrect when the page script blocked by some high cpu task run after the request send immediately
Reported by
crazy.j...@gmail.com,
Oct 25 2017
|
||||||||||||||||||||||
Issue description
UserAgent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.62 Safari/537.36
Example URL:
Steps to reproduce the problem:
1. send the request
2. run some busy tasks during some times
3. when the network fetch finished, the `content download time` show very long time
What is the expected behavior?
It should be the network download time only.
What went wrong?
I feel it contains the JS got the data after the tasks finished.
It should be the network download time only.
And if want to show the data is available for JS , I think should be another panel for it.
Did this work before? N/A
Chrome version: 62.0.3202.62 Channel: stable
OS Version: OS X 10.13.0
Flash Version:
here is the test code
```
var addRandomConsole = (n = 0) => {
if (--n > 0) {
console.log('random console :%s', n)
addRandomConsole(n)
}
}
fetch('//www.google.com?t='+ Date.now()).then(console.log).catch(console.error)
console.time('dump')
addRandomConsole(1000)
console.timeEnd('dump)
```
,
Oct 25 2017
,
Oct 25 2017
This seems to be a duplicate of https://bugs.chromium.org/p/chromium/issues/detail?id=778102 and the same issue as https://bugs.chromium.org/p/chromium/issues/detail?id=777939
,
Oct 25 2017
|
|||||||||||||||||||||||
►
Sign in to add a comment |
|||||||||||||||||||||||
Comment 1 by mmenke@chromium.org
, Oct 25 2017