I don't have an invite but it been used on TWIG. It works as following:

You can select a parts to highlight, parts to blackout. In the next step a screenshot of that is created (??) and you can preview what other browser information is transmitted.

So how does Google create that screenshot? does it send the complete modified DOM for server-side processing? or what other black magic is involved here?

link|improve this question

4  
Duplicate: stackoverflow.com/questions/4912092/… – Goran Rakic Jul 11 '11 at 17:33
feedback

4 Answers

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:

Google Chrome Developer Tools - Feedback Tool

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

Canvas over 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.

link|improve this answer
feedback

dont know the feature, but how your describing it; its not a crossplatform feature and not in the specs. Your looking for drawWindow of the canvas element. They then base64/urlencode the canvas and send it to the server. Can imagine they back it with serverside black magic for IE6 support.. or they make google+ a html5 browser only thing..

link|improve this answer
2  
I don't think the whole thing is a <canvas>-tag. – Jakob Cosoroaba Jun 29 '11 at 22:44
1  
ever looked at the 'new' google images site? their just like a million canvas tags (for no apparent reason what-so-ever). It must be canvas, because there is no other way to make a printscreen of a website on the clientside (or I'm not understanding what the feature of google+ is, that Jakob Cosoroaba is describing) – japrescott Jun 30 '11 at 0:12
I don't see any canvas tags in the rendered content. I may be missing some, but without a doubt some of the data is plain old HTML. – Matt Jul 7 '11 at 19:26
feedback

It could just send the entire DOM tree up to the server and have it rendered on the other end.

link|improve this answer
feedback

Check this out at http://www.youtube.com/, 'Report a bug' in footer. One important thing, you must use Google account to preview and submit your feedback.

At the moment, this feature doesn't exist in Gmail for Business (Google Apps).

link|improve this answer
Actually, at the time you posted this answer, it was (for my Google Apps account, anyway) because look at my answer above, it had the 'Report a bug' in the little mail icon in the navigation bar across the top of the page. – Nathan Mar 31 at 15:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.