On Tue, Feb 2, 2010 at 7:39 AM, Kenneth Russell <span dir="ltr"><<a href="mailto:kbr@google.com">kbr@google.com</a>></span> wrote:<br><div class="gmail_quote"><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
<div><div></div><div class="h5">When you say that the DOM viewport of the element is aligned with the<br></div></div>
screen when it goes fullscreen, does that mean that the .width and<br>
.height properties are changed? Or does it mean that the element's<br>
size is changed by a CSS style?<br></blockquote><div><br>The latter. The window's viewport is aligned with the screen bounds, and by default the element is styled with position:fixed; left:0; right:0; top:0; bottom:0, which resizes it in CSS to fill the viewport.<br>
<br></div><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
The case I'm thinking about is when a Canvas element is taken<br>
fullscreen; on that element changing the .width and .height properties<br>
changes the size of the backing store, but applying a CSS style to<br>
change its width and height causes the backing store to be scaled to<br>
fit. The desired behavior is for the backing store to be resized.<br clear="all"></blockquote><div> </div></div>The author would have to handle the beginfullscreen event and manually set the canvas width/height attributes, e.g. to getBoundingClientRect().width/height. I don't think we should change width/height attributes automatically, since that has the side effect of clearing the canvas.<br>
<br>Rob<br>-- <br>"He was pierced for our transgressions, he was crushed for our iniquities; the punishment that brought us peace was upon him, and by his wounds we are healed. We all, like sheep, have gone astray, each of us has turned to his own way; and the LORD has laid on him the iniquity of us all." [Isaiah 53:5-6]<br>