if (BrowserInfo.get().isIE()) {
// Workaround for Vaadin bug in IE (?), scrollbars...
ServerConnector parent2 = getParent();
if (parent2 instanceof WindowConnector) {
final WindowConnector w = (WindowConnector) parent2;
new Timer() {
@Override
public void run() {
VWindow widget2 = w.getWidget();
widget2.setWidth(widget2.getOffsetWidth()
+ "px");
widget2.setHeight(widget2.getOffsetHeight()
+ "px");
}