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)

defect

Tracking

(Not tracked)

People

(Reporter: rcampbell, Unassigned)

References

Details

(Whiteboard: [firebug-p2])

Attachments

(1 file)

Attached image screenshot
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.
Depends on: 512605
Whiteboard: [firebug-p2]
FWIW this is still the case in Firefox Nightly 37.0a1 (2014-12-11). Sebastian
Version: unspecified → Trunk
Filter on CLIMBING SHOES
Priority: -- → P3
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.
Product: Firefox → DevTools
Severity: normal → S3
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: