diff options
author | Teemu Suo-Anttila <teemusa@vaadin.com> | 2015-10-07 12:43:12 +0300 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2015-10-07 12:45:54 +0000 |
commit | ec8f3e9bc6955e9916e297b74a12b4a431b69928 (patch) | |
tree | 7c655959d75d63d0fba5c59814842a26eccd2cdc /uitest/src/com/vaadin/tests/contextclick/TableContextClick.java | |
parent | 548ee39a92ae3f148940e47cccc13d9679572b53 (diff) | |
download | vaadin-framework-ec8f3e9bc6955e9916e297b74a12b4a431b69928.tar.gz vaadin-framework-ec8f3e9bc6955e9916e297b74a12b4a431b69928.zip |
Use synthetic javascript events for IE browsers in context click tests
Change-Id: Ifdfac8f2088042e2eeb4618b66a9e4dc315f7e24
Diffstat (limited to 'uitest/src/com/vaadin/tests/contextclick/TableContextClick.java')
-rw-r--r-- | uitest/src/com/vaadin/tests/contextclick/TableContextClick.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/uitest/src/com/vaadin/tests/contextclick/TableContextClick.java b/uitest/src/com/vaadin/tests/contextclick/TableContextClick.java index 8d75dd61c0..d8816f4bdc 100644 --- a/uitest/src/com/vaadin/tests/contextclick/TableContextClick.java +++ b/uitest/src/com/vaadin/tests/contextclick/TableContextClick.java @@ -29,6 +29,7 @@ public class TableContextClick extends Table table = new Table(); table.setContainerDataSource(PersonContainer.createWithTestData()); table.setFooterVisible(true); + table.setHeight("400px"); return table; } |