I have searched for this, but cannot find it. How do I see a html canvas clip region in the Visual Studio Code debugger when paused on a break point? (I can obviously see the canvas and the canvas's context in the debugger, but cannot see any mention of the clip region within its properties.)
For example, if ctx in the canvas context, in the debugger I can see ctx.globalAlpha. How do I see the clip region of ctx in the debugger?
How can I set a breakpoint when this value changes.
I have a remaining clip region active when I do not want it, and I cannot see where it is not restored.
(And how would I manually reset just that clip region without using restore which restores everything.)