Enable console message listening from the server side for process and worker targets
Categories
(DevTools :: Console, enhancement)
Tracking
(Fission Milestone:M7, firefox87 disabled, firefox88 fixed)
People
(Reporter: ochameau, Assigned: nchevobbe)
References
(Blocks 2 open bugs)
Details
(Whiteboard: dt-fission-m3-mvp)
Attachments
(5 files)
Bug 1620243 introduced the implementation to listen for console messages via the Watcher Actor, but only for Tab targets. It will be disabled in that bug. Bug 1642295 is going to enable this, but still only for tab targets.
We should also enable it for processes and workers.
But, to do that, we would need to have the Watcher Actor to handle process and worker targets. i.e. bug 1620248 and bug 1633712.
Comment 1•4 years ago
|
||
Tracking dt-fission-m2-mvp bugs for Fission Nightly milestone (M6c).
Updated•4 years ago
|
Updated•4 years ago
|
Comment 2•4 years ago
|
||
Bulk move of all dt-fission-m3-mvp bugs to Fission MVP milestone.
Reporter | ||
Comment 3•4 years ago
|
||
Let's see what try says:
https://treeherder.mozilla.org/#/jobs?repo=try&revision=90c363c4da62ee660c31c4521d208a407602e8c5
It isn't clear what could go wrong here. It sounds like it should "just work".
ConsoleMessageWatcher
already contains worker-specific codepaths and I think there is also conditions and lines specific to processes.
The ultimate goal here is to have the same codepaths between all tooboxes. As, for now, we are still using legacy listeners for the browser toolboxes and most of the toolboxes spawn from about:debugging (WebExtension, workers).
We may still need some additonal work to support Watchers for WebExtension and workers (bug 1675763).
Once this is done, we can remove the old codepath, i.e. startListeners(["ConsoleAPI"]):
https://searchfox.org/mozilla-central/rev/dac45cc7020dfddbcc937827810dd11550c07dc3/devtools/server/actors/webconsole.js#636-647
Comment 4•4 years ago
|
||
Moving some dt-fission-m3-mvp bugs from Fission MVP to M7 (blocking Beta experiment).
Assignee | ||
Updated•4 years ago
|
Assignee | ||
Comment 5•4 years ago
|
||
Depends on D103284
Comment 7•4 years ago
|
||
bugherder |
Assignee | ||
Comment 8•4 years ago
|
||
Reopening as this was reverted in Bug 1693854
Updated•4 years ago
|
Assignee | ||
Comment 10•4 years ago
|
||
Depends on D107410
Assignee | ||
Comment 11•4 years ago
|
||
Depends on D107648
Assignee | ||
Comment 12•4 years ago
|
||
The patch for Bug 1697453 made it so we weren't dispatching resources tied to
a target being destroyed. This revealed an issue when adding a test for webextension
popup messages, where the target is being destroyed before the browser console can
consume it (see following patches in this queue).
Since Bug 1697453 was only done to try to make browser_toolbox_backward_forward_navigation.js
pass when fission is enabled, and given it's still failing, let's revert this
patch for now and reassess if this is needed, and if so, if we shoul only do that
for some specific resources.
Depends on D107648
Assignee | ||
Comment 13•4 years ago
|
||
We're getting those messages directly from the frame targets, so we can safely
ignore them in the content process.
A test case is added in a following patch in this queue.
Depends on D108394
Comment 14•4 years ago
|
||
Comment 15•4 years ago
|
||
bugherder |
https://hg.mozilla.org/mozilla-central/rev/6dd3d456f592
https://hg.mozilla.org/mozilla-central/rev/2ffd7b7ad755
https://hg.mozilla.org/mozilla-central/rev/1402d84905c1
https://hg.mozilla.org/mozilla-central/rev/cba0fce56522
https://hg.mozilla.org/mozilla-central/rev/82176cf8ae49
Description
•