diff options
author | Leif Åstrand <leif@vaadin.com> | 2012-06-20 16:32:41 +0300 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2012-06-20 16:32:41 +0300 |
commit | dbbfcb4a0c4dacb6b31bde6f8995b8ee06f02daa (patch) | |
tree | 6067bd17f4a3b3076e9d9cb0d0f14c0b47171377 | |
parent | df60bea0b911e921be38c4f3473a3b80506dd537 (diff) | |
download | vaadin-framework-dbbfcb4a0c4dacb6b31bde6f8995b8ee06f02daa.tar.gz vaadin-framework-dbbfcb4a0c4dacb6b31bde6f8995b8ee06f02daa.zip |
Disable tutorial code for browser.getClientHeight/Width as it's broken
-rw-r--r-- | tests/testbench/com/vaadin/tests/minitutorials/v7a1/UsingXyzWhenInitializing.java | 25 |
1 files 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)); + // } } } |