From dbbfcb4a0c4dacb6b31bde6f8995b8ee06f02daa Mon Sep 17 00:00:00 2001 From: =?utf8?q?Leif=20=C3=85strand?= Date: Wed, 20 Jun 2012 16:32:41 +0300 Subject: [PATCH] Disable tutorial code for browser.getClientHeight/Width as it's broken --- .../v7a1/UsingXyzWhenInitializing.java | 25 +++++++++---------- 1 file changed, 12 insertions(+), 13 deletions(-) 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)); + // } } } -- 2.39.5