MicrosoftEdge / DevTools

Feedback and discussions about Microsoft Edge Developer Tools
MIT License
151 stars 49 forks source link

The output text of nested "console.group()" is overlapping. #218

Closed experdot closed 5 months ago

experdot commented 5 months ago

Run the following code in Console:

console.group("Group Name");
console.group("Group Name1");
console.group("Group Name2");
console.group("Group Name3");
console.log("Text 11");
console.log("Text 12");
console.groupEnd();
console.groupEnd();
console.groupEnd();
console.groupEnd();

The indentation and line height of the input text are both incorrect, especially with some text overlapping. image

This seems to have become a problem only recently. Version 121.0.2277.83 (Official build) (64-bit)

captainbrosset commented 5 months ago

Thank you for reporting this. I tested in Chrome and the issue also appears there. So this is an upstream issue (i.e. in Chromium). Let me file a chromium bug to track it.

captainbrosset commented 5 months ago

This is now tracked upstream at: https://bugs.chromium.org/p/chromium/issues/detail?id=1523149

captainbrosset commented 5 months ago

The upstream bug has now been resolved. Yay! So it's just a matter of time for Edge to get the fix too.