From: Leif Åstrand Date: Wed, 20 Jun 2012 13:32:41 +0000 (+0300) Subject: Disable tutorial code for browser.getClientHeight/Width as it's broken X-Git-Tag: 7.0.0.alpha3~97 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=dbbfcb4a0c4dacb6b31bde6f8995b8ee06f02daa;p=vaadin-framework.git Disable tutorial code for browser.getClientHeight/Width as it's broken --- diff --git a/tests/testbench/com/vaadin/tests/minitutorials/v7a1/UsingXyzWhenInitializing.java b/tests/testbench/com/vaadin/tests/minitutorials/v7a1/UsingXyzWhenInitializing.java index 87d8351f77..426ef3525e 100644 --- a/tests/testbench/com/vaadin/tests/minitutorials/v7a1/UsingXyzWhenInitializing.java +++ b/tests/testbench/com/vaadin/tests/minitutorials/v7a1/UsingXyzWhenInitializing.java @@ -5,7 +5,6 @@ package com.vaadin.tests.minitutorials.v7a1; import com.vaadin.terminal.WrappedRequest; -import com.vaadin.terminal.gwt.server.WebBrowser; import com.vaadin.ui.Label; import com.vaadin.ui.Root; @@ -36,18 +35,18 @@ public class UsingXyzWhenInitializing extends Root { getContent().addComponent(new Label("Welcome to my application")); } - WebBrowser browser = request.getBrowserDetails().getWebBrowser(); - String resolution = "Your browser window on startup was " - + browser.getClientWidth() + "x" + browser.getClientHeight(); - if (browser.getClientWidth() > 1024) { - getContent().addComponent( - new Label("The is the large version of the application. " - + resolution)); - } else { - getContent().addComponent( - new Label("This is the small version of the application. " - + resolution)); - } + // WebBrowser browser = request.getBrowserDetails().getWebBrowser(); + // String resolution = "Your browser window on startup was " + // + browser.getClientWidth() + "x" + browser.getClientHeight(); + // if (browser.getClientWidth() > 1024) { + // getContent().addComponent( + // new Label("The is the large version of the application. " + // + resolution)); + // } else { + // getContent().addComponent( + // new Label("This is the small version of the application. " + // + resolution)); + // } } }