I have a lifetime of looking at this, as natural as can be in Dev Tools.
<div>
<span>Hi :)</span>
</div>
I am enjoying using Web Components, but what I don't like is this, forcing me to essentially click twice as often.
<cool-div>
#shadowroot
<cool-span>
#shadowroot
"Hi :)"
</cool-span>
</cool-div>
Do I have any options to make this a bit easier to work with in dev tools? I mean a good start might be as simple as expanding cool-div
would expand its #shadowroot
so that I don't have to click twice but ideally also getting rid of the fact that I can fit half of the vertical content on my screen. I'd take any tips that make it a bit less awkward.
Thanks.