Closed
Bug 1146608
Opened 11 years ago
Closed 10 years ago
[e10s] browser_markupview_toggle_01.js causes unsafe CPOW usage warnings
Categories
(DevTools :: Inspector, defect)
DevTools
Inspector
Tracking
(e10s+)
RESOLVED
DUPLICATE
of bug 1252099
| Tracking | Status | |
|---|---|---|
| e10s | + | --- |
People
(Reporter: Kwan, Unassigned)
References
(Blocks 1 open bug)
Details
(Whiteboard: [unsafe-cpow-usage])
Mined from test logs
In browser/devtools/markupview/test/browser_markupview_toggle_01.js:
info("Checking that child LI elements have been created");
for (let i = 0; i < content.document.querySelectorAll("li").length; i ++) { <- Causes CPOW warning
let liContainer = yield getContainerForSelector(
"li:nth-child(" + (i + 1) + ")", inspector);
ok(liContainer, "A container for the child LI element was created");
}
[...]
info("Checking that child LI elements have been hidden");
for (let i = 0; i < content.document.querySelectorAll("li").length; i ++) { <- Causes CPOW warning
let liContainer = yield getContainerForSelector(
"li:nth-child(" + (i + 1) + ")", inspector);
is(liContainer.elt.getClientRects().length, 0,
"The container for the child LI element was hidden");
}
Updated•11 years ago
|
Blocks: e10s-tests
Updated•10 years ago
|
tracking-e10s:
m8+ → ---
Whiteboard: [unsafe-cpow-usage]
Comment 2•10 years ago
|
||
Inspector bug triage. Filter on CLIMBING SHOES
Fixed by Bug 1252099.
Status: NEW → RESOLVED
Closed: 10 years ago
Resolution: --- → DUPLICATE
Updated•7 years ago
|
Product: Firefox → DevTools
You need to log in
before you can comment on or make changes to this bug.
Description
•