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
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 and I feel it contains the JS got the data after the tasks finished.
What is the expected behavior?
What went wrong?
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
|
|||||||||||||||||||||||
►
Sign in to add a comment |
|||||||||||||||||||||||
Comment 1 by m.beutlb...@sap.com
, Oct 25 2017