Open
Bug 806928
Opened 13 years ago
Updated 3 years ago
[markup panel] bails out after hundreds of nested nodes
Categories
(DevTools :: Inspector, defect, P3)
DevTools
Inspector
Tracking
(Not tracked)
NEW
People
(Reporter: rcampbell, Unassigned)
References
Details
(Whiteboard: [firebug-p2])
Attachments
(1 file)
|
414.31 KB,
image/png
|
Details |
Originally reported in Firebug issue 5780.
http://code.google.com/p/fbug/issues/detail?id=5780.
The Markup Panel will stop displaying nodes after a certain size.
1. Open data:text/html,basic
2. Run the following in a Scratchpad:
let node = document.body;
let div = document.createElement("div");
node.appendChild(div);
node = div;
for (let i = 0; i < 200; i++) {
div = document.createElement("div");
node.appendChild(div);
node = div;
}
3. Open the Inspector and navigate to the last <div>
See Screenshot. Last div is not displayed properly.
Updated•13 years ago
|
Whiteboard: [firebug-p2]
Comment 1•11 years ago
|
||
FWIW this is still the case in Firefox Nightly 37.0a1 (2014-12-11).
Sebastian
Version: unspecified → Trunk
Comment 3•8 years ago
|
||
This is still the case now. The HTML parser has a limit to how deep you can go.
There is a thread on dev-platform now that might lead to a solution: https://groups.google.com/forum/#!topic/mozilla.dev.platform/SUknMzK1ZAc
But for now, we're still blocked on this.
Updated•7 years ago
|
Product: Firefox → DevTools
Updated•3 years ago
|
Severity: normal → S3
You need to log in
before you can comment on or make changes to this bug.
Description
•