Open
Bug 1959381
Opened 15 days ago
Updated 8 days ago
Wrong process name in EvaluationContextSelector in browser console
Categories
(DevTools :: Console, defect, P3)
DevTools
Console
Tracking
(Not tracked)
NEW
People
(Reporter: tschuster, Unassigned)
References
(Blocks 1 open bug)
Details
Attachments
(1 file)
464.46 KB,
image/png
|
Details |
What were you doing?
- Open the Browser Console
- Go to the console tab
- Open cnn.com in a new tab
- Open the EvaluationContextSelector dropdown
What happened?
The list of contexts includes something like
(pid 1333) prealloc
Breaking News | CNN
What should have happened?
It should have been displayed like (not prealloc)
(pid 1333) https://cnn.com
Breaking News | CNN
Anything else we should know?
This doesn't always reproduce. For example on my screenshot it show it working for example.org but not cnn.com. about:process always shows the correct process type.
Reporter | ||
Comment 1•15 days ago
|
||
Comment 2•15 days ago
|
||
We're using Services.appinfo.remoteType
(https://searchfox.org/mozilla-central/rev/6cc05c6620814bf3eb05278ccf3b1f49690b7740/devtools/server/actors/targets/content-process.js#172), but we only set it when we create the target, where we might still be in this "prealloc" state.
Comment 3•8 days ago
|
||
We could do polling in case we see prealloc and wait until we can get a proper value and update this.
Severity: -- → S3
Priority: -- → P3
You need to log in
before you can comment on or make changes to this bug.
Description
•