diff options
Diffstat (limited to 'src/com/vaadin/tests/components/button/IE7ButtonWithIcon.java')
-rw-r--r-- | src/com/vaadin/tests/components/button/IE7ButtonWithIcon.java | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/src/com/vaadin/tests/components/button/IE7ButtonWithIcon.java b/src/com/vaadin/tests/components/button/IE7ButtonWithIcon.java deleted file mode 100644 index c6a0ae96a9..0000000000 --- a/src/com/vaadin/tests/components/button/IE7ButtonWithIcon.java +++ /dev/null @@ -1,27 +0,0 @@ -package com.vaadin.tests.components.button; - -import com.vaadin.terminal.ThemeResource; -import com.vaadin.tests.components.TestBase; -import com.vaadin.ui.Button; - -public class IE7ButtonWithIcon extends TestBase { - - @Override - protected String getDescription() { - return "The button should contain the text \"Normal\" and an 16x16 icon and have padding to the left and the right"; - } - - @Override - protected Integer getTicketNumber() { - return 3031; - } - - @Override - protected void setup() { - Button b = new Button("Normal"); - b.setIcon(new ThemeResource("../runo/icons/16/ok.png")); - - addComponent(b); - } - -} |