diff options
author | Pekka Hyvönen <pekka@vaadin.com> | 2015-05-06 08:31:36 +0300 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2015-05-06 08:54:39 +0000 |
commit | 0fcac7054158ec6dbd8e8707854ee2700be72439 (patch) | |
tree | 4e23ff70f46d54fd10c82b554457fc783740186d /uitest | |
parent | bfb616f28efe70f50dcac40730d6eb5cb30d9958 (diff) | |
download | vaadin-framework-0fcac7054158ec6dbd8e8707854ee2700be72439.tar.gz vaadin-framework-0fcac7054158ec6dbd8e8707854ee2700be72439.zip |
Fixes some broken FF24 tests for Grid.
Change-Id: I7f1d21afd93f7fd74302738d24b4ba91be23ebec
Diffstat (limited to 'uitest')
-rw-r--r-- | uitest/src/com/vaadin/tests/components/grid/basicfeatures/GridBasicFeatures.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/uitest/src/com/vaadin/tests/components/grid/basicfeatures/GridBasicFeatures.java b/uitest/src/com/vaadin/tests/components/grid/basicfeatures/GridBasicFeatures.java index 8c60deaf3c..18f2d02e93 100644 --- a/uitest/src/com/vaadin/tests/components/grid/basicfeatures/GridBasicFeatures.java +++ b/uitest/src/com/vaadin/tests/components/grid/basicfeatures/GridBasicFeatures.java @@ -564,6 +564,11 @@ public class GridBasicFeatures extends AbstractComponentTest<Grid> { for (int i = -1; i <= COLUMNS; i++) { frozenOptions.put(String.valueOf(i), Integer.valueOf(i)); } + /* + * This line below is a workaround for a FF24 bug regarding submenu + * handling - it makes the sub menu wider. + */ + frozenOptions.put("-1 for unfreezing selection column", -1); createSelectAction("Frozen column count", "State", frozenOptions, "0", new Command<Grid, Integer>() { @Override |