The highlights and blackouts are div tags and one single canvas tag. I used Chrome "Inspect Element" and they are all divs. It even works in Firefox and Internet Explorer, so it definitely isn't just a Chrome thing.
I did some experimenting with this, and here's a screen shot of the developer tools:

As you can see, they are all divs, and there is only one canvas. The canvas is over the whole page:

JavaScript can read the DOM and render a fairly accurate representation of that using canvas. So when it is showing that "Analyzing page" dialog, it is rendering a representation of the page, and then it lays it over the page using a canvas.
After it does that, it allows you to highlight and blackout content. Those are divs being placed over the canvas where you want it. After you click on "Preview", it renders another representation with the highlights and blackouts on it and puts it on the preview page with the other information.
The reason I know it isn't laying divs over the actual page is because I got a couple new emails when I was in the Feedback thing and the emails didn't pop up in the inbox, but in the window title it said "Inbox (2) - ..." That means it isn't the actual page, because the emails would've appeared in the inbox.
I hope this helps.