Closed
Bug 1243261
Opened 10 years ago
Closed 9 years ago
Intermittent e10s browser_rules_eyedropper.js | Uncaught exception - at :0 - Error: operation not possible on dead CPOW
Categories
(DevTools :: Inspector: Rules, defect, P2)
DevTools
Inspector: Rules
Tracking
(e10s+)
RESOLVED
WORKSFORME
| Tracking | Status | |
|---|---|---|
| e10s | + | --- |
People
(Reporter: philor, Unassigned)
References
(Blocks 1 open bug)
Details
(Keywords: intermittent-failure, Whiteboard: [btpp-fix-later])
Updated•10 years ago
|
Blocks: e10s-tests
tracking-e10s:
--- → +
Comment 1•9 years ago
|
||
This test accesses the content page a bunch in this function:
function inspectPage(dropper, click = true) {
let target = document.documentElement;
let win = window;
// get location of the content, offset from browser window
let box = gBrowser.selectedBrowser.getBoundingClientRect();
let x = box.left + 1;
let y = box.top + 1;
return dropperStarted(dropper).then(() => {
EventUtils.synthesizeMouse(target, x, y, { type: "mousemove" }, win);
return dropperLoaded(dropper).then(() => {
EventUtils.synthesizeMouse(target, x + 10, y + 10,
{ type: "mousemove" }, win);
if (click) {
EventUtils.synthesizeMouse(target, x + 10, y + 10, {}, win);
}
});
});
}
This is easily fixable (in fact it should have been fixed in bug 1246677, but I guess I missed it then).
Priority: -- → P2
Whiteboard: [btpp-fix-later]
Comment 2•9 years ago
|
||
This test has been rewritten in bug 1262437 and doesn't accesses CPOWs anymore. Plus, no failure reports since March. Closing.
Status: NEW → RESOLVED
Closed: 9 years ago
Resolution: --- → WORKSFORME
Updated•7 years ago
|
Product: Firefox → DevTools
You need to log in
before you can comment on or make changes to this bug.
Description
•