From c6fc48997925f321d950f59ef54e214f599c9620 Mon Sep 17 00:00:00 2001 From: Artur Signell Date: Mon, 14 Sep 2009 09:39:52 +0000 Subject: Test case for #3165 svn changeset:8756/svn branch:6.1 --- .../components/table/ModifyContainerProperty.java | 57 ++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 src/com/vaadin/tests/components/table/ModifyContainerProperty.java (limited to 'src/com') diff --git a/src/com/vaadin/tests/components/table/ModifyContainerProperty.java b/src/com/vaadin/tests/components/table/ModifyContainerProperty.java new file mode 100644 index 0000000000..0038e7f083 --- /dev/null +++ b/src/com/vaadin/tests/components/table/ModifyContainerProperty.java @@ -0,0 +1,57 @@ +package com.vaadin.tests.components.table; + +import com.vaadin.data.util.IndexedContainer; +import com.vaadin.tests.components.TestBase; +import com.vaadin.ui.Button; +import com.vaadin.ui.Table; + +@SuppressWarnings("serial") +public class ModifyContainerProperty extends TestBase { + + private Table table = new Table(); + private IndexedContainer ic = new IndexedContainer(); + + @Override + protected void setup() { + addComponent(table); + + ic.addContainerProperty("one", String.class, "one"); + ic.addContainerProperty("two", String.class, "two"); + + ic.addItem("foo"); + + ic.getContainerProperty("foo", "one").setValue("bar"); + ic.getContainerProperty("foo", "two").setValue("baz"); + + table.setContainerDataSource(ic); + addComponent(new Button("Remove container property", + new Button.ClickListener() { + public void buttonClick(com.vaadin.ui.Button.ClickEvent arg0) { + ic.removeContainerProperty("one"); + } + })); + addComponent(new Button("Add container property", + new Button.ClickListener() { + public void buttonClick(com.vaadin.ui.Button.ClickEvent arg0) { + ic.addContainerProperty("three", String.class, "three"); + Object[] current = table.getVisibleColumns(); + Object[] vis = new Object[current.length + 1]; + for (int i = 0; i < current.length; i++) { + vis[i] = current[i]; + } + vis[current.length] = "three"; + table.setVisibleColumns(vis); + } + })); + } + + @Override + protected String getDescription() { + return "Clicking on \"Add container property\" adds a property to the container and sets it visible. The table should then show a \"three\" column in addition to the others. Clicking on \"Remove container property\" should remove column \"two\" from the table."; + } + + @Override + protected Integer getTicketNumber() { + return 3165; + } +} -- cgit v1.2.3 From c55a22db805b656cd44598e6a98627da3d8a759d Mon Sep 17 00:00:00 2001 From: Artur Signell Date: Mon, 14 Sep 2009 10:01:43 +0000 Subject: Test case for #3095 svn changeset:8757/svn branch:6.1 --- .../components/HierarchicalContainerSorting.java | 97 ++++++++++++++++++++++ 1 file changed, 97 insertions(+) create mode 100644 src/com/vaadin/tests/components/HierarchicalContainerSorting.java (limited to 'src/com') diff --git a/src/com/vaadin/tests/components/HierarchicalContainerSorting.java b/src/com/vaadin/tests/components/HierarchicalContainerSorting.java new file mode 100644 index 0000000000..4e498d93b6 --- /dev/null +++ b/src/com/vaadin/tests/components/HierarchicalContainerSorting.java @@ -0,0 +1,97 @@ +package com.vaadin.tests.components; + +import com.vaadin.data.Item; +import com.vaadin.data.util.HierarchicalContainer; +import com.vaadin.data.util.IndexedContainer; +import com.vaadin.ui.HorizontalLayout; +import com.vaadin.ui.Tree; + +public class HierarchicalContainerSorting extends TestBase { + IndexedContainer hierarchicalContainer = new HierarchicalContainer(); + + IndexedContainer indexedContainer = new IndexedContainer(); + + @Override + public void setup() { + + populateContainer(indexedContainer); + populateContainer(hierarchicalContainer); + + sort(indexedContainer); + sort(hierarchicalContainer); + + HorizontalLayout hl = new HorizontalLayout(); + + Tree tree1 = new Tree("Tree with IndexedContainer"); + tree1.setContainerDataSource(indexedContainer); + hl.addComponent(tree1); + + Tree tree2 = new Tree("Tree with HierarchicalContainer"); + tree2.setContainerDataSource(hierarchicalContainer); + for (Object id : tree2.rootItemIds()) { + tree2.expandItemsRecursively(id); + } + hl.addComponent(tree2); + + addComponent(hl); + } + + private static void sort(IndexedContainer container) { + Object[] properties = new Object[1]; + properties[0] = "name"; + + boolean[] ascending = new boolean[1]; + ascending[0] = true; + + container.sort(properties, ascending); + } + + private static void populateContainer(IndexedContainer container) { + container.addContainerProperty("name", String.class, null); + + addItem(container, "Games", null); + addItem(container, "Call of Duty", "Games"); + addItem(container, "Might and Magic", "Games"); + addItem(container, "Fallout", "Games"); + addItem(container, "Red Alert", "Games"); + + addItem(container, "Cars", null); + addItem(container, "Toyota", "Cars"); + addItem(container, "Volvo", "Cars"); + addItem(container, "Audi", "Cars"); + addItem(container, "Ford", "Cars"); + + addItem(container, "Natural languages", null); + addItem(container, "Swedish", "Natural languages"); + addItem(container, "English", "Natural languages"); + addItem(container, "Finnish", "Natural languages"); + + addItem(container, "Programming languages", null); + addItem(container, "C++", "Programming languages"); + addItem(container, "PHP", "Programming languages"); + addItem(container, "Java", "Programming languages"); + addItem(container, "Python", "Programming languages"); + + } + + public static void addItem(IndexedContainer container, String string, + String parent) { + Item item = container.addItem(string); + item.getItemProperty("name").setValue(string); + + if (parent != null && container instanceof HierarchicalContainer) { + ((HierarchicalContainer) container).setParent(string, parent); + } + } + + @Override + protected String getDescription() { + return "The two trees contain the same data, one uses IndexedContainer, one uses HierarchicalContainer. Both should be sorted, both the root nodes and the children."; + } + + @Override + protected Integer getTicketNumber() { + return 3095; + } + +} \ No newline at end of file -- cgit v1.2.3 From e704637c73087ffec6d10037142e1c61b9bd344e Mon Sep 17 00:00:00 2001 From: Mikael Grankvist Date: Mon, 14 Sep 2009 12:44:41 +0000 Subject: Component test cases svn changeset:8760/svn branch:6.1 --- build/build.xml | 35 +++-- build/package/WebContent/WEB-INF/web.xml | 6 +- .../absolutelayout/AbsoluteLayoutClipping.html | 27 ++++ .../AbstractFieldCommitWithInvalidValues.html | 72 +++++++++ .../tests/components/accordion/RemoveTabs.html | 122 ++++++++++++++++ .../TestBeanItemContainerUsage.html | 37 +++++ .../components/button/ButtonUndefinedWidth.html | 82 +++++++++++ .../tests/components/button/DisabledButtons.html | 32 ++++ .../tests/components/button/IE7ButtonWithIcon.html | 32 ++++ .../button/TooltipForDisabledButton.html | 92 ++++++++++++ .../tests/components/caption/LargeCaptionIcon.html | 37 +++++ .../checkbox/CheckboxCaptionWrapping.html | 32 ++++ .../tests/components/checkbox/CheckboxIcon.html | 62 ++++++++ .../tests/components/checkbox/CheckboxIcon.java | 2 +- .../components/combobox/ComboBoxItemIcon.html | 57 ++++++++ .../components/combobox/ComboBoxNavigation.html | 82 +++++++++++ .../components/datefield/DateFieldReadOnly.html | 77 ++++++++++ .../components/datefield/DateFieldReadOnly.java | 6 +- .../components/datefield/TestDatefieldYear.html | 92 ++++++++++++ .../tests/components/embedded/EmbeddedTooltip.html | 42 ++++++ .../form/FormCommitWithInvalidValues.html | 112 ++++++++++++++ .../components/form/FormRenderingFlicker.html | 42 ++++++ .../label/HundredPercentWideLabelResize.html | 62 ++++++++ .../tests/components/label/LabelWrapping.html | 62 ++++++++ src/com/vaadin/tests/components/link/LinkIcon.html | 27 ++++ src/com/vaadin/tests/components/link/LinkIcon.java | 2 +- .../tests/components/link/LinkTargetSize.html | 42 ++++++ .../orderedlayout/ReplaceComponentNPE.html | 47 ++++++ .../components/popupview/PopupViewOffScreen.html | 47 ++++++ .../components/richtextarea/RichTextAreaSize.html | 32 ++++ .../splitpanel/SplitPanelSplitterWidth.html | 47 ++++++ .../components/table/ClippedComponentsInTable.html | 32 ++++ .../table/ColumnCollapsingAndColumnExpansion.html | 57 ++++++++ .../tests/components/table/ColumnExpandRatio.html | 32 ++++ .../table/ColumnExpandWithFixedColumns.html | 32 ++++ .../components/table/ContainerSizeChange.html | 82 +++++++++++ .../table/LabelEmbeddedClickThroughForTable.html | 52 +++++++ .../tests/components/table/MissingScrollbar.html | 57 ++++++++ .../components/table/PropertyValueChange.html | 87 +++++++++++ .../tests/components/table/RowAdditionTest.html | 157 ++++++++++++++++++++ .../components/table/TableLastRowMissing.html | 32 ++++ .../components/table/TablePageLengthUpdate.html | 127 ++++++++++++++++ .../tests/components/table/TableRowHeight.html | 32 ++++ .../tests/components/table/TableRowHeight2.html | 57 ++++++++ .../tests/components/table/TableRowHeight3.html | 27 ++++ .../table/TableVisibleColumnsUpdate.html | 77 ++++++++++ .../components/table/TextFieldRelativeWidth.html | 57 ++++++++ .../components/tabsheet/AddAndRemoveTabs.html | 117 +++++++++++++++ .../components/tabsheet/PreventTabChange.html | 77 ++++++++++ .../components/tabsheet/RemoveTabsTabsheet.html | 112 ++++++++++++++ .../components/tabsheet/TabSheetCaptions.html | 77 ++++++++++ .../components/tabsheet/TabSheetCaptions.java | 12 +- .../components/tabsheet/TabSheetDisabling.html | 162 +++++++++++++++++++++ .../tests/components/tabsheet/TabSheetIcons.html | 27 ++++ .../tests/components/tabsheet/TabSheetIcons.java | 4 +- .../tabsheet/TabSheetWithoutTabCaption.html | 32 ++++ .../tests/components/tabsheet/TabsheetTooltip.html | 82 +++++++++++ .../tabsheet/VerticalScrollbarPosition.html | 77 ++++++++++ .../components/tree/TreeNodeCaptionWrapping.html | 37 +++++ .../window/CenteredWindowWithUndefinedSize.html | 32 ++++ .../components/window/EmbeddedInSubWindow.html | 32 ++++ .../components/window/SubwindowInvalidLayout.html | 32 ++++ .../window/TestTooSmallSubwindowSize.html | 32 ++++ .../components/window/UndefinedWidthSubWindow.html | 32 ++++ .../window/WindowShouldRemoveActionHandler.html | 107 ++++++++++++++ tests/test.xml | 79 ++++++---- 66 files changed, 3657 insertions(+), 50 deletions(-) create mode 100644 src/com/vaadin/tests/components/absolutelayout/AbsoluteLayoutClipping.html create mode 100644 src/com/vaadin/tests/components/abstractfield/AbstractFieldCommitWithInvalidValues.html create mode 100644 src/com/vaadin/tests/components/accordion/RemoveTabs.html create mode 100644 src/com/vaadin/tests/components/beanitemcontainer/TestBeanItemContainerUsage.html create mode 100644 src/com/vaadin/tests/components/button/ButtonUndefinedWidth.html create mode 100644 src/com/vaadin/tests/components/button/DisabledButtons.html create mode 100644 src/com/vaadin/tests/components/button/IE7ButtonWithIcon.html create mode 100644 src/com/vaadin/tests/components/button/TooltipForDisabledButton.html create mode 100644 src/com/vaadin/tests/components/caption/LargeCaptionIcon.html create mode 100644 src/com/vaadin/tests/components/checkbox/CheckboxCaptionWrapping.html create mode 100644 src/com/vaadin/tests/components/checkbox/CheckboxIcon.html create mode 100644 src/com/vaadin/tests/components/combobox/ComboBoxItemIcon.html create mode 100644 src/com/vaadin/tests/components/combobox/ComboBoxNavigation.html create mode 100644 src/com/vaadin/tests/components/datefield/DateFieldReadOnly.html create mode 100644 src/com/vaadin/tests/components/datefield/TestDatefieldYear.html create mode 100644 src/com/vaadin/tests/components/embedded/EmbeddedTooltip.html create mode 100644 src/com/vaadin/tests/components/form/FormCommitWithInvalidValues.html create mode 100644 src/com/vaadin/tests/components/form/FormRenderingFlicker.html create mode 100644 src/com/vaadin/tests/components/label/HundredPercentWideLabelResize.html create mode 100644 src/com/vaadin/tests/components/label/LabelWrapping.html create mode 100644 src/com/vaadin/tests/components/link/LinkIcon.html create mode 100644 src/com/vaadin/tests/components/link/LinkTargetSize.html create mode 100644 src/com/vaadin/tests/components/orderedlayout/ReplaceComponentNPE.html create mode 100644 src/com/vaadin/tests/components/popupview/PopupViewOffScreen.html create mode 100644 src/com/vaadin/tests/components/richtextarea/RichTextAreaSize.html create mode 100644 src/com/vaadin/tests/components/splitpanel/SplitPanelSplitterWidth.html create mode 100644 src/com/vaadin/tests/components/table/ClippedComponentsInTable.html create mode 100644 src/com/vaadin/tests/components/table/ColumnCollapsingAndColumnExpansion.html create mode 100644 src/com/vaadin/tests/components/table/ColumnExpandRatio.html create mode 100644 src/com/vaadin/tests/components/table/ColumnExpandWithFixedColumns.html create mode 100644 src/com/vaadin/tests/components/table/ContainerSizeChange.html create mode 100644 src/com/vaadin/tests/components/table/LabelEmbeddedClickThroughForTable.html create mode 100644 src/com/vaadin/tests/components/table/MissingScrollbar.html create mode 100644 src/com/vaadin/tests/components/table/PropertyValueChange.html create mode 100644 src/com/vaadin/tests/components/table/RowAdditionTest.html create mode 100644 src/com/vaadin/tests/components/table/TableLastRowMissing.html create mode 100644 src/com/vaadin/tests/components/table/TablePageLengthUpdate.html create mode 100644 src/com/vaadin/tests/components/table/TableRowHeight.html create mode 100644 src/com/vaadin/tests/components/table/TableRowHeight2.html create mode 100644 src/com/vaadin/tests/components/table/TableRowHeight3.html create mode 100644 src/com/vaadin/tests/components/table/TableVisibleColumnsUpdate.html create mode 100644 src/com/vaadin/tests/components/table/TextFieldRelativeWidth.html create mode 100644 src/com/vaadin/tests/components/tabsheet/AddAndRemoveTabs.html create mode 100644 src/com/vaadin/tests/components/tabsheet/PreventTabChange.html create mode 100644 src/com/vaadin/tests/components/tabsheet/RemoveTabsTabsheet.html create mode 100644 src/com/vaadin/tests/components/tabsheet/TabSheetCaptions.html create mode 100644 src/com/vaadin/tests/components/tabsheet/TabSheetDisabling.html create mode 100644 src/com/vaadin/tests/components/tabsheet/TabSheetIcons.html create mode 100644 src/com/vaadin/tests/components/tabsheet/TabSheetWithoutTabCaption.html create mode 100644 src/com/vaadin/tests/components/tabsheet/TabsheetTooltip.html create mode 100644 src/com/vaadin/tests/components/tabsheet/VerticalScrollbarPosition.html create mode 100644 src/com/vaadin/tests/components/tree/TreeNodeCaptionWrapping.html create mode 100644 src/com/vaadin/tests/components/window/CenteredWindowWithUndefinedSize.html create mode 100644 src/com/vaadin/tests/components/window/EmbeddedInSubWindow.html create mode 100644 src/com/vaadin/tests/components/window/SubwindowInvalidLayout.html create mode 100644 src/com/vaadin/tests/components/window/TestTooSmallSubwindowSize.html create mode 100644 src/com/vaadin/tests/components/window/UndefinedWidthSubWindow.html create mode 100644 src/com/vaadin/tests/components/window/WindowShouldRemoveActionHandler.html (limited to 'src/com') diff --git a/build/build.xml b/build/build.xml index 6759566ae3..e69ebed14d 100644 --- a/build/build.xml +++ b/build/build.xml @@ -240,6 +240,8 @@ + + @@ -630,7 +632,7 @@ - + @@ -650,7 +652,7 @@ - + @@ -698,11 +700,13 @@ - + + - + + @@ -747,7 +751,7 @@ - + @@ -985,7 +989,7 @@ - + @@ -997,7 +1001,7 @@ - + @@ -1130,7 +1134,7 @@ - + @@ -1230,22 +1234,29 @@ + Version: ${version} + - - + + + + + + + - - + + diff --git a/build/package/WebContent/WEB-INF/web.xml b/build/package/WebContent/WEB-INF/web.xml index 4b7937b302..e78047ca48 100644 --- a/build/package/WebContent/WEB-INF/web.xml +++ b/build/package/WebContent/WEB-INF/web.xml @@ -47,11 +47,7 @@ --> VaadinApplicationRunner - com.vaadin.terminal.gwt.server.ApplicationServlet - - applicationRunner - true - + com.vaadin.terminal.gwt.server.ApplicationRunnerServlet diff --git a/src/com/vaadin/tests/components/absolutelayout/AbsoluteLayoutClipping.html b/src/com/vaadin/tests/components/absolutelayout/AbsoluteLayoutClipping.html new file mode 100644 index 0000000000..f39f409e8c --- /dev/null +++ b/src/com/vaadin/tests/components/absolutelayout/AbsoluteLayoutClipping.html @@ -0,0 +1,27 @@ + + + + + + +AbsoluteLayoutClipping + + + + + + + + + + + + + + + + + +
AbsoluteLayoutClipping
open/Vaadin6.1/run/com.vaadin.tests.components.absolutelayout.AbsoluteLayoutClipping
screenCapture
+ + diff --git a/src/com/vaadin/tests/components/abstractfield/AbstractFieldCommitWithInvalidValues.html b/src/com/vaadin/tests/components/abstractfield/AbstractFieldCommitWithInvalidValues.html new file mode 100644 index 0000000000..cfc855cf99 --- /dev/null +++ b/src/com/vaadin/tests/components/abstractfield/AbstractFieldCommitWithInvalidValues.html @@ -0,0 +1,72 @@ + + + + + + +AbstractFieldCommitWithInvalidValues + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AbstractFieldCommitWithInvalidValues
open/Vaadin6.1/run/com.vaadin.tests.components.abstractfield.AbstractFieldCommitWithInvalidValues
waitForVaadin
clickvaadin=Vaadin61runcomvaadintestscomponentsabstractfieldAbstractFieldCommitWithInvalidValues::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]
waitForVaadin
screenCapture
clickAtvaadin=Vaadin61runcomvaadintestscomponentsabstractfieldAbstractFieldCommitWithInvalidValues::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTextField[0]
waitForVaadin
typevaadin=Vaadin61runcomvaadintestscomponentsabstractfieldAbstractFieldCommitWithInvalidValues::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTextField[0]long
clickvaadin=Vaadin61runcomvaadintestscomponentsabstractfieldAbstractFieldCommitWithInvalidValues::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]
waitForVaadin
screenCapture
+ + diff --git a/src/com/vaadin/tests/components/accordion/RemoveTabs.html b/src/com/vaadin/tests/components/accordion/RemoveTabs.html new file mode 100644 index 0000000000..dd9fe952e6 --- /dev/null +++ b/src/com/vaadin/tests/components/accordion/RemoveTabs.html @@ -0,0 +1,122 @@ + + + + + + +RemoveTabsTest + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
RemoveTabsTest
open/Vaadin6.1/run/com.vaadin.tests.components.accordion.RemoveTabs
waitForVaadin
screenCapture
clickvaadin=Vaadin61runcomvaadintestscomponentsaccordionRemoveTabs::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]
waitForVaadin
screenCapture
clickvaadin=Vaadin61runcomvaadintestscomponentsaccordionRemoveTabs::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VAccordion[0]/domChild[2]/domChild[0]/domChild[0]
waitForVaadin
screenCapture
clickvaadin=Vaadin61runcomvaadintestscomponentsaccordionRemoveTabs::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[3]/VButton[0]/domChild[0]
waitForVaadin
screenCapture
clickvaadin=Vaadin61runcomvaadintestscomponentsaccordionRemoveTabs::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[4]/VButton[0]/domChild[0]/domChild[0]
waitForVaadin
screenCapture
clickvaadin=Vaadin61runcomvaadintestscomponentsaccordionRemoveTabs::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[2]/VButton[0]/domChild[0]/domChild[0]
waitForVaadin
screenCapture
clickvaadin=Vaadin61runcomvaadintestscomponentsaccordionRemoveTabs::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0]
waitForVaadin
screenCapture
+ + diff --git a/src/com/vaadin/tests/components/beanitemcontainer/TestBeanItemContainerUsage.html b/src/com/vaadin/tests/components/beanitemcontainer/TestBeanItemContainerUsage.html new file mode 100644 index 0000000000..7b2b61bc79 --- /dev/null +++ b/src/com/vaadin/tests/components/beanitemcontainer/TestBeanItemContainerUsage.html @@ -0,0 +1,37 @@ + + + + + + +TestBeanItemContainerUsage + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TestBeanItemContainerUsage
open/Vaadin6.1/run/com.vaadin.tests.components.beanitemcontainer.TestBeanItemContainerUsage
waitForVaadin
verifyTextPresentTable containing Persons



age

firstName

lastName




35
Jones
Birchman
30
Marc
Smith
75
Greg
Sandman
screenCapture
+ + diff --git a/src/com/vaadin/tests/components/button/ButtonUndefinedWidth.html b/src/com/vaadin/tests/components/button/ButtonUndefinedWidth.html new file mode 100644 index 0000000000..f5c90750d1 --- /dev/null +++ b/src/com/vaadin/tests/components/button/ButtonUndefinedWidth.html @@ -0,0 +1,82 @@ + + + + + + +ButtonUndefinedWidth + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ButtonUndefinedWidth
open/Vaadin6.1/run/com.vaadin.tests.components.button.ButtonUndefinedWidth
waitForVaadin
screenCapture1
waitForVaadin
clickvaadin=Vaadin61runcomvaadintestscomponentsbuttonButtonUndefinedWidth::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VButton[0]/domChild[0]/domChild[0]
waitForVaadin
clickvaadin=Vaadin61runcomvaadintestscomponentsbuttonButtonUndefinedWidth::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VNativeButton[0]
waitForVaadin
clickvaadin=Vaadin61runcomvaadintestscomponentsbuttonButtonUndefinedWidth::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[2]/VScrollTable[0]/ScrollPanel[0]/VScrollTable$VScrollTableBody[0]/VScrollTable$VScrollTableBody$VScrollTableRow[0]/VButton[0]/domChild[0]/domChild[0]
waitForVaadin
clickvaadin=Vaadin61runcomvaadintestscomponentsbuttonButtonUndefinedWidth::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[2]/VScrollTable[0]/ScrollPanel[0]/VScrollTable$VScrollTableBody[0]/VScrollTable$VScrollTableBody$VScrollTableRow[1]/VNativeButton[0]
waitForVaadin
screenCapture1
+ + diff --git a/src/com/vaadin/tests/components/button/DisabledButtons.html b/src/com/vaadin/tests/components/button/DisabledButtons.html new file mode 100644 index 0000000000..1a73bdee5c --- /dev/null +++ b/src/com/vaadin/tests/components/button/DisabledButtons.html @@ -0,0 +1,32 @@ + + + + + + +DisabledButtons + + + + + + + + + + + + + + + + + + + + + + +
DisabledButtons
open/Vaadin6.1/run/com.vaadin.tests.components.button.DisabledButtons
waitForVaadin
screenCapture
+ + diff --git a/src/com/vaadin/tests/components/button/IE7ButtonWithIcon.html b/src/com/vaadin/tests/components/button/IE7ButtonWithIcon.html new file mode 100644 index 0000000000..8eb2df869c --- /dev/null +++ b/src/com/vaadin/tests/components/button/IE7ButtonWithIcon.html @@ -0,0 +1,32 @@ + + + + + + +IE7ButtonWithIcon + + + + + + + + + + + + + + + + + + + + + + +
IE7ButtonWithIcon
open/Vaadin6.1/run/com.vaadin.tests.components.button.IE7ButtonWithIcon
waitForVaadin
screenCapture
+ + diff --git a/src/com/vaadin/tests/components/button/TooltipForDisabledButton.html b/src/com/vaadin/tests/components/button/TooltipForDisabledButton.html new file mode 100644 index 0000000000..809b07e736 --- /dev/null +++ b/src/com/vaadin/tests/components/button/TooltipForDisabledButton.html @@ -0,0 +1,92 @@ + + + + + + +TooltipForDisabledButton + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TooltipForDisabledButton
open/Vaadin6.1/run/com.vaadin.tests.components.button.TooltipForDisabledButton
waitForVaadin
clickvaadin=Vaadin61runcomvaadintestscomponentsbuttonTooltipForDisabledButton::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VButton[0]/domChild[0]/domChild[0]
waitForVaadin
mouseOvervaadin=Vaadin61runcomvaadintestscomponentsbuttonTooltipForDisabledButton::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VButton[0]/domChild[0]/domChild[0]
waitForVaadin
pause500
screenCapture
waitForVaadin
clickvaadin=Vaadin61runcomvaadintestscomponentsbuttonTooltipForDisabledButton::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0]
waitForVaadin
mouseOvervaadin=Vaadin61runcomvaadintestscomponentsbuttonTooltipForDisabledButton::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0]
waitForVaadin
pause500
screenCapture
+ + diff --git a/src/com/vaadin/tests/components/caption/LargeCaptionIcon.html b/src/com/vaadin/tests/components/caption/LargeCaptionIcon.html new file mode 100644 index 0000000000..fd0a3c4394 --- /dev/null +++ b/src/com/vaadin/tests/components/caption/LargeCaptionIcon.html @@ -0,0 +1,37 @@ + + + + + + +LargeCaptionIcon + + + + + + + + + + + + + + + + + + + + + + + + + + + +
LargeCaptionIcon
open/Vaadin6.1/run/com.vaadin.tests.components.caption.LargeCaptionIcon
screenCapture
refresh
screenCapture
+ + diff --git a/src/com/vaadin/tests/components/checkbox/CheckboxCaptionWrapping.html b/src/com/vaadin/tests/components/checkbox/CheckboxCaptionWrapping.html new file mode 100644 index 0000000000..8df99e7fa8 --- /dev/null +++ b/src/com/vaadin/tests/components/checkbox/CheckboxCaptionWrapping.html @@ -0,0 +1,32 @@ + + + + + + +CheckboxCaptionWrapping + + + + + + + + + + + + + + + + + + + + + + +
CheckboxCaptionWrapping
open/Vaadin6.1/run/com.vaadin.tests.components.checkbox.CheckboxCaptionWrapping
waitForVaadin
screenCapture
+ + diff --git a/src/com/vaadin/tests/components/checkbox/CheckboxIcon.html b/src/com/vaadin/tests/components/checkbox/CheckboxIcon.html new file mode 100644 index 0000000000..0af95f53e5 --- /dev/null +++ b/src/com/vaadin/tests/components/checkbox/CheckboxIcon.html @@ -0,0 +1,62 @@ + + + + + + +CheckboxIcon + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
CheckboxIcon
open/Vaadin6.1/run/com.vaadin.tests.components.checkbox.CheckboxIcon
waitForVaadin
verifyTextPresentA checkbox
waitForVaadin
clickvaadin=Vaadin61runcomvaadintestscomponentscheckboxCheckboxIcon::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VCheckBox[0]/domChild[0]
waitForVaadin
mouseOvervaadin=Vaadin61runcomvaadintestscomponentscheckboxCheckboxIcon::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VCheckBox[0]/domChild[0]
waitForVaadin
screenCapture
+ + diff --git a/src/com/vaadin/tests/components/checkbox/CheckboxIcon.java b/src/com/vaadin/tests/components/checkbox/CheckboxIcon.java index b38348e45f..1f96a05084 100644 --- a/src/com/vaadin/tests/components/checkbox/CheckboxIcon.java +++ b/src/com/vaadin/tests/components/checkbox/CheckboxIcon.java @@ -20,7 +20,7 @@ public class CheckboxIcon extends TestBase { @Override protected void setup() { CheckBox checkbox = new CheckBox("A checkbox"); - checkbox.setIcon(new ThemeResource("icons/32/calendar.png")); + checkbox.setIcon(new ThemeResource("../runo/icons/32/calendar.png")); checkbox.setDescription("Tooltip for checkbox"); addComponent(checkbox); diff --git a/src/com/vaadin/tests/components/combobox/ComboBoxItemIcon.html b/src/com/vaadin/tests/components/combobox/ComboBoxItemIcon.html new file mode 100644 index 0000000000..2e50f8361c --- /dev/null +++ b/src/com/vaadin/tests/components/combobox/ComboBoxItemIcon.html @@ -0,0 +1,57 @@ + + + + + + +ComboBoxItemIcon + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ComboBoxItemIcon
open/Vaadin6.1/run/com.vaadin.tests.components.combobox.ComboBoxItemIcon
waitForVaadin
clickvaadin=Vaadin61runcomvaadintestscomponentscomboboxComboBoxItemIcon::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VFilterSelect[0]/domChild[1]
waitForVaadin
screenCapture
click//div[@id='VAADIN_COMBOBOX_OPTIONLIST']/div/div[2]/table/tbody/tr[2]/td
waitForVaadin
screenCapture
+ + diff --git a/src/com/vaadin/tests/components/combobox/ComboBoxNavigation.html b/src/com/vaadin/tests/components/combobox/ComboBoxNavigation.html new file mode 100644 index 0000000000..a3d1ccdf03 --- /dev/null +++ b/src/com/vaadin/tests/components/combobox/ComboBoxNavigation.html @@ -0,0 +1,82 @@ + + + + + + +ComboBoxNavigation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ComboBoxNavigation
open/Vaadin6.1/run/com.vaadin.tests.components.combobox.ComboBoxNavigation
waitForVaadin
clickvaadin=Vaadin61runcomvaadintestscomponentscomboboxComboBoxNavigation::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VFilterSelect[0]/domChild[0]
waitForVaadin
keyPressvaadin=Vaadin61runcomvaadintestscomponentscomboboxComboBoxNavigation::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VFilterSelect[0]/domChild[0]\25
waitForVaadin
screenCapture
keyPressvaadin=Vaadin61runcomvaadintestscomponentscomboboxComboBoxNavigation::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VFilterSelect[0]/domChild[0]\25
waitForVaadin
screenCapture
keyPressvaadin=Vaadin61runcomvaadintestscomponentscomboboxComboBoxNavigation::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VFilterSelect[0]/domChild[0]\24
waitForVaadin
screenCapture
+ + diff --git a/src/com/vaadin/tests/components/datefield/DateFieldReadOnly.html b/src/com/vaadin/tests/components/datefield/DateFieldReadOnly.html new file mode 100644 index 0000000000..efc9983ab5 --- /dev/null +++ b/src/com/vaadin/tests/components/datefield/DateFieldReadOnly.html @@ -0,0 +1,77 @@ + + + + + + +DateFieldReadOnly + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
DateFieldReadOnly
open/run/com.vaadin.tests.components.datefield.DateFieldReadOnly
waitForVaadin
screenCapture1
clickvaadin=runcomvaadintestscomponentsdatefieldDateFieldReadOnly::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0]
waitForVaadin
clickvaadin=runcomvaadintestscomponentsdatefieldDateFieldReadOnly::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VPopupCalendar[0]/domChild[1]
waitForVaadin
screenCapture2
waitForVaadin
clickAtvaadin=runcomvaadintestscomponentsdatefieldDateFieldReadOnly::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0]0,0
waitForVaadin
screenCapture1
+ + diff --git a/src/com/vaadin/tests/components/datefield/DateFieldReadOnly.java b/src/com/vaadin/tests/components/datefield/DateFieldReadOnly.java index 857af3a8be..46af5b07be 100644 --- a/src/com/vaadin/tests/components/datefield/DateFieldReadOnly.java +++ b/src/com/vaadin/tests/components/datefield/DateFieldReadOnly.java @@ -30,7 +30,11 @@ public class DateFieldReadOnly extends TestBase { timeField.setWidth("8em"); timeField.addStyleName("timeField"); - timeField.setValue(new Date()); + // Set date so that testing always has same time + Date date = new Date(); + date.setTime((long) 1000000000000.0); + + timeField.setValue(date); timeField.setReadOnly(true); addComponent(timeField); diff --git a/src/com/vaadin/tests/components/datefield/TestDatefieldYear.html b/src/com/vaadin/tests/components/datefield/TestDatefieldYear.html new file mode 100644 index 0000000000..2582948eee --- /dev/null +++ b/src/com/vaadin/tests/components/datefield/TestDatefieldYear.html @@ -0,0 +1,92 @@ + + + + + + +TestDatefieldYear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TestDatefieldYear
open/run/com.vaadin.tests.components.datefield.TestDatefieldYear
waitForVaadin
clickvaadin=runcomvaadintestscomponentsdatefieldTestDatefieldYear::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VPopupCalendar[0]/domChild[1]
waitForVaadin
screenCapture
clickvaadin=runcomvaadintestscomponentsdatefieldTestDatefieldYear::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VPopupCalendar[0]/domChild[1]
waitForVaadin
click//table[@id='PID_VAADIN_POPUPCAL']/tbody/tr/td[1]/button
waitForVaadin
screenCapture
clickvaadin=runcomvaadintestscomponentsdatefieldTestDatefieldYear::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VPopupCalendar[0]/domChild[1]
waitForVaadin
click//table[@id='PID_VAADIN_POPUPCAL']/tbody/tr/td[2]/button
waitForVaadin
screenCapture
+ + diff --git a/src/com/vaadin/tests/components/embedded/EmbeddedTooltip.html b/src/com/vaadin/tests/components/embedded/EmbeddedTooltip.html new file mode 100644 index 0000000000..8028ffa66b --- /dev/null +++ b/src/com/vaadin/tests/components/embedded/EmbeddedTooltip.html @@ -0,0 +1,42 @@ + + + + + + +EmbeddedTooltip + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
EmbeddedTooltip
open/Vaadin6.1/run/com.vaadin.tests.components.embedded.EmbeddedTooltip
waitForVaadin
screenCapture
mouseOvervaadin=Vaadin61runcomvaadintestscomponentsembeddedEmbeddedTooltip::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VEmbedded[0]/domChild[0]
screenCapture
+ + diff --git a/src/com/vaadin/tests/components/form/FormCommitWithInvalidValues.html b/src/com/vaadin/tests/components/form/FormCommitWithInvalidValues.html new file mode 100644 index 0000000000..ada010ef8d --- /dev/null +++ b/src/com/vaadin/tests/components/form/FormCommitWithInvalidValues.html @@ -0,0 +1,112 @@ + + + + + + +FormCommitWithInvalidValues + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FormCommitWithInvalidValues
open/Vaadin6.1/run/com.vaadin.tests.components.form.FormCommitWithInvalidValues
waitForVaadin
clickvaadin=Vaadin61runcomvaadintestscomponentsformFormCommitWithInvalidValues::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]
waitForVaadin
screenCapture
clickvaadin=Vaadin61runcomvaadintestscomponentsformFormCommitWithInvalidValues::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VForm[0]/VFormLayout[0]/VFormLayout$VFormLayoutTable[0]/VTextField[0]
waitForVaadin
typevaadin=Vaadin61runcomvaadintestscomponentsformFormCommitWithInvalidValues::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VForm[0]/VFormLayout[0]/VFormLayout$VFormLayoutTable[0]/VTextField[0]1
waitForVaadin
clickvaadin=Vaadin61runcomvaadintestscomponentsformFormCommitWithInvalidValues::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]
waitForVaadin
screenCapture
clickvaadin=Vaadin61runcomvaadintestscomponentsformFormCommitWithInvalidValues::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VForm[0]/VFormLayout[0]/VFormLayout$VFormLayoutTable[0]/VTextField[0]
waitForVaadin
typevaadin=Vaadin61runcomvaadintestscomponentsformFormCommitWithInvalidValues::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VForm[0]/VFormLayout[0]/VFormLayout$VFormLayoutTable[0]/VTextField[0]123
waitForVaadin
clickvaadin=Vaadin61runcomvaadintestscomponentsformFormCommitWithInvalidValues::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0]
waitForVaadin
screenCapture
+ + diff --git a/src/com/vaadin/tests/components/form/FormRenderingFlicker.html b/src/com/vaadin/tests/components/form/FormRenderingFlicker.html new file mode 100644 index 0000000000..9da5e4a08e --- /dev/null +++ b/src/com/vaadin/tests/components/form/FormRenderingFlicker.html @@ -0,0 +1,42 @@ + + + + + + +FormRenderingFlicker + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FormRenderingFlicker
open/Vaadin6.1/run/com.vaadin.tests.components.form.FormRenderingFlicker
waitForVaadin
screenCapture
clickvaadin=Vaadin61runcomvaadintestscomponentsformFormRenderingFlicker::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VPanel[0]/VVerticalLayout[0]/ChildComponentContainer[0]/VScrollTable[0]/domChild[1]/domChild[0]/domChild[1]/domChild[0]/domChild[1]/domChild[0]
waitForVaadin
+ + diff --git a/src/com/vaadin/tests/components/label/HundredPercentWideLabelResize.html b/src/com/vaadin/tests/components/label/HundredPercentWideLabelResize.html new file mode 100644 index 0000000000..4608c60c11 --- /dev/null +++ b/src/com/vaadin/tests/components/label/HundredPercentWideLabelResize.html @@ -0,0 +1,62 @@ + + + + + + +HundredPercentWideLabelResize + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
HundredPercentWideLabelResize
open/Vaadin6.1/run/com.vaadin.tests.components.label.HundredPercentWideLabelResize
waitForVaadin
screenCapture1
clickvaadin=Vaadin61runcomvaadintestscomponentslabelHundredPercentWideLabelResize::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0]
waitForVaadin
screenCapture2
clickvaadin=Vaadin61runcomvaadintestscomponentslabelHundredPercentWideLabelResize::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0]
waitForVaadin
screenCapture1
+ + diff --git a/src/com/vaadin/tests/components/label/LabelWrapping.html b/src/com/vaadin/tests/components/label/LabelWrapping.html new file mode 100644 index 0000000000..91d5ba91a7 --- /dev/null +++ b/src/com/vaadin/tests/components/label/LabelWrapping.html @@ -0,0 +1,62 @@ + + + + + + +LabelWrapping + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
LabelWrapping
open/Vaadin6.1/run/com.vaadin.tests.components.label.LabelWrapping
waitForVaadin
screenCapture1
clickvaadin=Vaadin61runcomvaadintestscomponentslabelLabelWrapping::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VHorizontalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]
waitForVaadin
screenCapture2
clickvaadin=Vaadin61runcomvaadintestscomponentslabelLabelWrapping::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VHorizontalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]
waitForVaadin
screenCapture1
+ + diff --git a/src/com/vaadin/tests/components/link/LinkIcon.html b/src/com/vaadin/tests/components/link/LinkIcon.html new file mode 100644 index 0000000000..8ae7942916 --- /dev/null +++ b/src/com/vaadin/tests/components/link/LinkIcon.html @@ -0,0 +1,27 @@ + + + + + + +LinkIcon + + + + + + + + + + + + + + + + + +
LinkIcon
open/run/com.vaadin.tests.components.link.LinkIcon
screenCapture
+ + diff --git a/src/com/vaadin/tests/components/link/LinkIcon.java b/src/com/vaadin/tests/components/link/LinkIcon.java index 0b10e87f21..372417a45c 100644 --- a/src/com/vaadin/tests/components/link/LinkIcon.java +++ b/src/com/vaadin/tests/components/link/LinkIcon.java @@ -22,7 +22,7 @@ public class LinkIcon extends TestBase { protected void setup() { Link l = new Link("www.google.com", new ExternalResource( "http://www.vaadin.com/")); - l.setIcon(new ThemeResource("icons/32/calendar.png")); + l.setIcon(new ThemeResource("../runo/icons/32/calendar.png")); addComponent(l); } diff --git a/src/com/vaadin/tests/components/link/LinkTargetSize.html b/src/com/vaadin/tests/components/link/LinkTargetSize.html new file mode 100644 index 0000000000..f839f0835a --- /dev/null +++ b/src/com/vaadin/tests/components/link/LinkTargetSize.html @@ -0,0 +1,42 @@ + + + + + + +LinkTargetSize + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
LinkTargetSize
open/Vaadin6.1/run/com.vaadin.tests.components.link.LinkTargetSize
waitForVaadin
clickvaadin=Vaadin61runcomvaadintestscomponentslinkLinkTargetSize::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VLink[0]/domChild[0]/domChild[0]
waitForVaadin
screenCapture
+ + diff --git a/src/com/vaadin/tests/components/orderedlayout/ReplaceComponentNPE.html b/src/com/vaadin/tests/components/orderedlayout/ReplaceComponentNPE.html new file mode 100644 index 0000000000..02f81d4b94 --- /dev/null +++ b/src/com/vaadin/tests/components/orderedlayout/ReplaceComponentNPE.html @@ -0,0 +1,47 @@ + + + + + + +ReplaceComponentNPE + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ReplaceComponentNPE
open/Vaadin6.1/run/com.vaadin.tests.components.orderedlayout.ReplaceComponentNPE
waitForVaadin
screenCapture
clickvaadin=Vaadin61runcomvaadintestscomponentsorderedlayoutReplaceComponentNPE::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0]
waitForVaadin
screenCapture
+ + diff --git a/src/com/vaadin/tests/components/popupview/PopupViewOffScreen.html b/src/com/vaadin/tests/components/popupview/PopupViewOffScreen.html new file mode 100644 index 0000000000..c349666aba --- /dev/null +++ b/src/com/vaadin/tests/components/popupview/PopupViewOffScreen.html @@ -0,0 +1,47 @@ + + + + + + +PopupViewOffScreen + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
PopupViewOffScreen
open/Vaadin6.1/run/com.vaadin.tests.components.popupview.PopupViewOffScreen
waitForVaadin
screenCapture
clickvaadin=Vaadin61runcomvaadintestscomponentspopupviewPopupViewOffScreen::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VGridLayout[0]/AbsolutePanel[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0]
waitForVaadin
screenCapture
+ + diff --git a/src/com/vaadin/tests/components/richtextarea/RichTextAreaSize.html b/src/com/vaadin/tests/components/richtextarea/RichTextAreaSize.html new file mode 100644 index 0000000000..aaac22bc81 --- /dev/null +++ b/src/com/vaadin/tests/components/richtextarea/RichTextAreaSize.html @@ -0,0 +1,32 @@ + + + + + + +RichTextAreaSize + + + + + + + + + + + + + + + + + + + + + + +
RichTextAreaSize
open/Vaadin6.1/run/com.vaadin.tests.components.richtextarea.RichTextAreaSize
waitForVaadin
screenCapture
+ + diff --git a/src/com/vaadin/tests/components/splitpanel/SplitPanelSplitterWidth.html b/src/com/vaadin/tests/components/splitpanel/SplitPanelSplitterWidth.html new file mode 100644 index 0000000000..a7273c1538 --- /dev/null +++ b/src/com/vaadin/tests/components/splitpanel/SplitPanelSplitterWidth.html @@ -0,0 +1,47 @@ + + + + + + +SplitPanelSplitterWidth + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
SplitPanelSplitterWidth
open/Vaadin6.1/run/com.vaadin.tests.components.splitpanel.SplitPanelSplitterWidth
waitForVaadin
screenCapture
clickvaadin=Vaadin61runcomvaadintestscomponentssplitpanelSplitPanelSplitterWidth::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VButton[0]/domChild[0]/domChild[0]
waitForVaadin
screenCapture
+ + diff --git a/src/com/vaadin/tests/components/table/ClippedComponentsInTable.html b/src/com/vaadin/tests/components/table/ClippedComponentsInTable.html new file mode 100644 index 0000000000..f69650a528 --- /dev/null +++ b/src/com/vaadin/tests/components/table/ClippedComponentsInTable.html @@ -0,0 +1,32 @@ + + + + + + +ClippedComponentsInTable + + + + + + + + + + + + + + + + + + + + + + +
ClippedComponentsInTable
open/Vaadin6.1/run/com.vaadin.tests.components.table.ClippedComponentsInTable
waitForVaadin
screenCapture
+ + diff --git a/src/com/vaadin/tests/components/table/ColumnCollapsingAndColumnExpansion.html b/src/com/vaadin/tests/components/table/ColumnCollapsingAndColumnExpansion.html new file mode 100644 index 0000000000..1a6d092005 --- /dev/null +++ b/src/com/vaadin/tests/components/table/ColumnCollapsingAndColumnExpansion.html @@ -0,0 +1,57 @@ + + + + + + +ColumnCollapsingAndColumnExpansion + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ColumnCollapsingAndColumnExpansion
open/Vaadin6.1/run/com.vaadin.tests.components.table.ColumnCollapsingAndColumnExpansion
waitForVaadin
screenCapture
clickvaadin=Vaadin61runcomvaadintestscomponentstableColumnCollapsingAndColumnExpansion::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VScrollTable[0]/domChild[0]/domChild[1]
waitForVaadin
click//td[@id='gwt-uid-2']/span/div
waitForVaadin
screenCapture
+ + diff --git a/src/com/vaadin/tests/components/table/ColumnExpandRatio.html b/src/com/vaadin/tests/components/table/ColumnExpandRatio.html new file mode 100644 index 0000000000..e741c12bec --- /dev/null +++ b/src/com/vaadin/tests/components/table/ColumnExpandRatio.html @@ -0,0 +1,32 @@ + + + + + + +ColumnExpandRatio + + + + + + + + + + + + + + + + + + + + + + +
ColumnExpandRatio
open/Vaadin6.1/run/com.vaadin.tests.components.table.ColumnExpandRatio
waitForVaadin
screenCapture
+ + diff --git a/src/com/vaadin/tests/components/table/ColumnExpandWithFixedColumns.html b/src/com/vaadin/tests/components/table/ColumnExpandWithFixedColumns.html new file mode 100644 index 0000000000..1b391030ec --- /dev/null +++ b/src/com/vaadin/tests/components/table/ColumnExpandWithFixedColumns.html @@ -0,0 +1,32 @@ + + + + + + +ColumnExpandWithFixedColumns + + + + + + + + + + + + + + + + + + + + + + +
ColumnExpandWithFixedColumns
open/Vaadin6.1/run/com.vaadin.tests.components.table.ColumnExpandWithFixedColumns
waitForVaadin
screenCapture
+ + diff --git a/src/com/vaadin/tests/components/table/ContainerSizeChange.html b/src/com/vaadin/tests/components/table/ContainerSizeChange.html new file mode 100644 index 0000000000..7c2374f322 --- /dev/null +++ b/src/com/vaadin/tests/components/table/ContainerSizeChange.html @@ -0,0 +1,82 @@ + + + + + + +ContainerSizeChange + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ContainerSizeChange
open/run/com.vaadin.tests.components.table.ContainerSizeChange
waitForVaadin
clickvaadin=runcomvaadintestscomponentstableContainerSizeChange::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0]
waitForVaadin
clickvaadin=runcomvaadintestscomponentstableContainerSizeChange::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0]
waitForVaadin
scrollvaadin=runcomvaadintestscomponentstableContainerSizeChange::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VScrollTable[0]/domChild[1]945
pause300
waitForVaadin
scrollvaadin=runcomvaadintestscomponentstableContainerSizeChange::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VScrollTable[0]/domChild[1]525
pause300
waitForVaadin
screenCapture
+ + diff --git a/src/com/vaadin/tests/components/table/LabelEmbeddedClickThroughForTable.html b/src/com/vaadin/tests/components/table/LabelEmbeddedClickThroughForTable.html new file mode 100644 index 0000000000..6176e263e5 --- /dev/null +++ b/src/com/vaadin/tests/components/table/LabelEmbeddedClickThroughForTable.html @@ -0,0 +1,52 @@ + + + + + + +LabelEmbeddedClickThroughForTable + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
LabelEmbeddedClickThroughForTable
open/Vaadin6.1/run/com.vaadin.tests.components.table.LabelEmbeddedClickThroughForTable
waitForVaadin
clickvaadin=Vaadin61runcomvaadintestscomponentstableLabelEmbeddedClickThroughForTable::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VScrollTable[0]/ScrollPanel[0]/VScrollTable$VScrollTableBody[0]/VScrollTable$VScrollTableBody$VScrollTableRow[0]/VLabel[1]/domChild[0]
waitForVaadin
screenCapture
clickvaadin=Vaadin61runcomvaadintestscomponentstableLabelEmbeddedClickThroughForTable::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VScrollTable[0]/ScrollPanel[0]/VScrollTable$VScrollTableBody[0]/VScrollTable$VScrollTableBody$VScrollTableRow[1]/VLabel[1]/domChild[0]
waitForVaadin
+ + diff --git a/src/com/vaadin/tests/components/table/MissingScrollbar.html b/src/com/vaadin/tests/components/table/MissingScrollbar.html new file mode 100644 index 0000000000..cbbdd9e9fc --- /dev/null +++ b/src/com/vaadin/tests/components/table/MissingScrollbar.html @@ -0,0 +1,57 @@ + + + + + + +MissingScrollbar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MissingScrollbar
open/Vaadin6.1/run/com.vaadin.tests.components.table.MissingScrollbar
waitForVaadin
clickvaadin=Vaadin61runcomvaadintestscomponentstableMissingScrollbar::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VHorizontalLayout[0]/ChildComponentContainer[0]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0]
waitForVaadin
screenCapture
clickvaadin=Vaadin61runcomvaadintestscomponentstableMissingScrollbar::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VHorizontalLayout[0]/ChildComponentContainer[0]/VVerticalLayout[0]/ChildComponentContainer[0]/VButton[0]/domChild[0]/domChild[0]
waitForVaadin
screenCapture
+ + diff --git a/src/com/vaadin/tests/components/table/PropertyValueChange.html b/src/com/vaadin/tests/components/table/PropertyValueChange.html new file mode 100644 index 0000000000..5e4ec51749 --- /dev/null +++ b/src/com/vaadin/tests/components/table/PropertyValueChange.html @@ -0,0 +1,87 @@ + + + + + + +PropertyValueChange + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
PropertyValueChange
open/Vaadin6.1/run/com.vaadin.tests.components.table.PropertyValueChange
waitForVaadin
screenCapture
clickvaadin=Vaadin61runcomvaadintestscomponentstablePropertyValueChange::PID_Seditortable/ScrollPanel[0]/VScrollTable$VScrollTableBody[0]/VScrollTable$VScrollTableBody$VScrollTableRow[0]/VFilterSelect[0]/domChild[1]
waitForVaadin
click//div[@id='VAADIN_COMBOBOX_OPTIONLIST']/div/div[2]/table/tbody/tr[4]/td
waitForVaadin
clickvaadin=Vaadin61runcomvaadintestscomponentstablePropertyValueChange::PID_Seditortable/ScrollPanel[0]/VScrollTable$VScrollTableBody[0]/VScrollTable$VScrollTableBody$VScrollTableRow[0]/VTextField[0]
waitForVaadin
typevaadin=Vaadin61runcomvaadintestscomponentstablePropertyValueChange::PID_Seditortable/ScrollPanel[0]/VScrollTable$VScrollTableBody[0]/VScrollTable$VScrollTableBody$VScrollTableRow[0]/VTextField[0]9
waitForVaadin
clickvaadin=Vaadin61runcomvaadintestscomponentstablePropertyValueChange::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[3]/VButton[0]/domChild[0]/domChild[0]
waitForVaadin
screenCapture
+ + diff --git a/src/com/vaadin/tests/components/table/RowAdditionTest.html b/src/com/vaadin/tests/components/table/RowAdditionTest.html new file mode 100644 index 0000000000..e731052aa2 --- /dev/null +++ b/src/com/vaadin/tests/components/table/RowAdditionTest.html @@ -0,0 +1,157 @@ + + + + + + +RowAdditionTest + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
RowAdditionTest
open/Vaadin6.1/run/com.vaadin.tests.components.table.RowAdditionTest
waitForVaadin
clickvaadin=Vaadin61runcomvaadintestscomponentstableRowAdditionTest::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VHorizontalLayout[0]/ChildComponentContainer[0]/VButton[0]/domChild[0]/domChild[0]
waitForVaadin
screenCapture
clickvaadin=Vaadin61runcomvaadintestscomponentstableRowAdditionTest::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VHorizontalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0]
waitForVaadin
scrollvaadin=Vaadin61runcomvaadintestscomponentstableRowAdditionTest::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VScrollTable[0]/domChild[1]300
waitForVaadin
scrollvaadin=Vaadin61runcomvaadintestscomponentstableRowAdditionTest::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VScrollTable[0]/domChild[1]600
waitForVaadin
scrollvaadin=Vaadin61runcomvaadintestscomponentstableRowAdditionTest::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VScrollTable[0]/domChild[1]900
waitForVaadin
screenCapture
clickvaadin=Vaadin61runcomvaadintestscomponentstableRowAdditionTest::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VHorizontalLayout[0]/ChildComponentContainer[2]/VButton[0]/domChild[0]
waitForVaadin
scrollvaadin=Vaadin61runcomvaadintestscomponentstableRowAdditionTest::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VScrollTable[0]/domChild[1]903
waitForVaadin
scrollvaadin=Vaadin61runcomvaadintestscomponentstableRowAdditionTest::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VScrollTable[0]/domChild[1]1203
waitForVaadin
scrollvaadin=Vaadin61runcomvaadintestscomponentstableRowAdditionTest::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VScrollTable[0]/domChild[1]1503
waitForVaadin
scrollvaadin=Vaadin61runcomvaadintestscomponentstableRowAdditionTest::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VScrollTable[0]/domChild[1]1803
waitForVaadin
screenCapture
scrollvaadin=Vaadin61runcomvaadintestscomponentstableRowAdditionTest::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VScrollTable[0]/domChild[1]1848
waitForVaadin
screenCapture
+ + diff --git a/src/com/vaadin/tests/components/table/TableLastRowMissing.html b/src/com/vaadin/tests/components/table/TableLastRowMissing.html new file mode 100644 index 0000000000..aa4cca15d9 --- /dev/null +++ b/src/com/vaadin/tests/components/table/TableLastRowMissing.html @@ -0,0 +1,32 @@ + + + + + + +TableLastRowMissing + + + + + + + + + + + + + + + + + + + + + + +
TableLastRowMissing
open/Vaadin6.1/run/com.vaadin.tests.components.table.TableLastRowMissing
waitForVaadin
screenCapture
+ + diff --git a/src/com/vaadin/tests/components/table/TablePageLengthUpdate.html b/src/com/vaadin/tests/components/table/TablePageLengthUpdate.html new file mode 100644 index 0000000000..6a45b43ac5 --- /dev/null +++ b/src/com/vaadin/tests/components/table/TablePageLengthUpdate.html @@ -0,0 +1,127 @@ + + + + + + +TablePageLengthUpdate + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TablePageLengthUpdate
open/Vaadin6.1/run/com.vaadin.tests.components.table.TablePageLengthUpdate
waitForVaadin
clickvaadin=Vaadin61runcomvaadintestscomponentstableTablePageLengthUpdate::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[3]/VTextField[0]
waitForVaadin
typevaadin=Vaadin61runcomvaadintestscomponentstableTablePageLengthUpdate::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[3]/VTextField[0]200px
clickvaadin=Vaadin61runcomvaadintestscomponentstableTablePageLengthUpdate::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[2]/VButton[0]/domChild[0]/domChild[0]
waitForVaadin
verifyTextPresentexact:Pagelength: 9
screenCapture
clickvaadin=Vaadin61runcomvaadintestscomponentstableTablePageLengthUpdate::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[3]/VTextField[0]
waitForVaadin
typevaadin=Vaadin61runcomvaadintestscomponentstableTablePageLengthUpdate::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[3]/VTextField[0]250px
clickvaadin=Vaadin61runcomvaadintestscomponentstableTablePageLengthUpdate::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[2]/VButton[0]/domChild[0]/domChild[0]
waitForVaadin
verifyTextPresentexact:Pagelength: 11
waitForVaadin
screenCapture
typevaadin=Vaadin61runcomvaadintestscomponentstableTablePageLengthUpdate::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[3]/VTextField[0]50px
clickvaadin=Vaadin61runcomvaadintestscomponentstableTablePageLengthUpdate::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[2]/VButton[0]/domChild[0]/domChild[0]
waitForVaadin
verifyTextPresentexact:Pagelength: 2
screenCapture
+ + diff --git a/src/com/vaadin/tests/components/table/TableRowHeight.html b/src/com/vaadin/tests/components/table/TableRowHeight.html new file mode 100644 index 0000000000..c61818c056 --- /dev/null +++ b/src/com/vaadin/tests/components/table/TableRowHeight.html @@ -0,0 +1,32 @@ + + + + + + +TableRowHeight + + + + + + + + + + + + + + + + + + + + + + +
TableRowHeight
open/Vaadin6.1/run/com.vaadin.tests.components.table.TableRowHeight
waitForVaadin
screenCapture
+ + diff --git a/src/com/vaadin/tests/components/table/TableRowHeight2.html b/src/com/vaadin/tests/components/table/TableRowHeight2.html new file mode 100644 index 0000000000..68236fd534 --- /dev/null +++ b/src/com/vaadin/tests/components/table/TableRowHeight2.html @@ -0,0 +1,57 @@ + + + + + + +TableRowHeight2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TableRowHeight2
open/Vaadin6.1/run/com.vaadin.tests.components.table.TableRowHeight2
waitForVaadin
screenCapture1
clickvaadin=Vaadin61runcomvaadintestscomponentstableTableRowHeight2::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VHorizontalLayout[0]/ChildComponentContainer[0]/VScrollTable[0]/ScrollPanel[0]/VScrollTable$VScrollTableBody[0]/VScrollTable$VScrollTableBody$VScrollTableRow[0]/VButton[1]/domChild[0]/domChild[0]
waitForVaadin
clickvaadin=Vaadin61runcomvaadintestscomponentstableTableRowHeight2::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VHorizontalLayout[0]/ChildComponentContainer[0]/VScrollTable[0]/ScrollPanel[0]/VScrollTable$VScrollTableBody[0]/VScrollTable$VScrollTableBody$VScrollTableRow[1]/VButton[1]/domChild[0]/domChild[0]
waitForVaadin
screenCapture1
+ + diff --git a/src/com/vaadin/tests/components/table/TableRowHeight3.html b/src/com/vaadin/tests/components/table/TableRowHeight3.html new file mode 100644 index 0000000000..2aa90085e4 --- /dev/null +++ b/src/com/vaadin/tests/components/table/TableRowHeight3.html @@ -0,0 +1,27 @@ + + + + + + +TableRowHeight3 + + + + + + + + + + + + + + + + + +
TableRowHeight3
open/run/com.vaadin.tests.components.table.TableRowHeight3
screenCapture
+ + diff --git a/src/com/vaadin/tests/components/table/TableVisibleColumnsUpdate.html b/src/com/vaadin/tests/components/table/TableVisibleColumnsUpdate.html new file mode 100644 index 0000000000..1e9316f174 --- /dev/null +++ b/src/com/vaadin/tests/components/table/TableVisibleColumnsUpdate.html @@ -0,0 +1,77 @@ + + + + + + +TableVisibleColumnsUpdate + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TableVisibleColumnsUpdate
open/Vaadin6.1/run/com.vaadin.tests.components.table.TableVisibleColumnsUpdate
waitForVaadin
screenCapture1
clickvaadin=Vaadin61runcomvaadintestscomponentstableTableVisibleColumnsUpdate::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0]
waitForVaadin
screenCapture2
clickvaadin=Vaadin61runcomvaadintestscomponentstableTableVisibleColumnsUpdate::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]
waitForVaadin
screenCapture1
clickvaadin=Vaadin61runcomvaadintestscomponentstableTableVisibleColumnsUpdate::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]
waitForVaadin
screenCapture2
+ + diff --git a/src/com/vaadin/tests/components/table/TextFieldRelativeWidth.html b/src/com/vaadin/tests/components/table/TextFieldRelativeWidth.html new file mode 100644 index 0000000000..9cc182e1d7 --- /dev/null +++ b/src/com/vaadin/tests/components/table/TextFieldRelativeWidth.html @@ -0,0 +1,57 @@ + + + + + + +TextFieldRelativeWidth + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TextFieldRelativeWidth
open/Vaadin6.1/run/com.vaadin.tests.components.table.TextFieldRelativeWidth
waitForVaadin
screenCapture
clickvaadin=Vaadin61runcomvaadintestscomponentstableTextFieldRelativeWidth::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VScrollTable[0]/ScrollPanel[0]/VScrollTable$VScrollTableBody[0]/VScrollTable$VScrollTableBody$VScrollTableRow[2]/VButton[0]/domChild[0]/domChild[0]
waitForVaadin
clickvaadin=Vaadin61runcomvaadintestscomponentstableTextFieldRelativeWidth::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VScrollTable[0]/ScrollPanel[0]/VScrollTable$VScrollTableBody[0]/VScrollTable$VScrollTableBody$VScrollTableRow[4]/VButton[0]/domChild[0]/domChild[0]
waitForVaadin
screenCapture
+ + diff --git a/src/com/vaadin/tests/components/tabsheet/AddAndRemoveTabs.html b/src/com/vaadin/tests/components/tabsheet/AddAndRemoveTabs.html new file mode 100644 index 0000000000..3f4e0e8f8f --- /dev/null +++ b/src/com/vaadin/tests/components/tabsheet/AddAndRemoveTabs.html @@ -0,0 +1,117 @@ + + + + + + +AddAndRemoveTabs + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AddAndRemoveTabs
open/Vaadin6.1/run/com.vaadin.tests.components.tabsheet.AddAndRemoveTabs
waitForVaadin
clickvaadin=Vaadin61runcomvaadintestscomponentstabsheetAddAndRemoveTabs::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/VTabsheetPanel[0]/VHorizontalLayout[0]/ChildComponentContainer[0]/VButton[0]/domChild[0]/domChild[0]
waitForVaadin
screenCapture
clickvaadin=Vaadin61runcomvaadintestscomponentstabsheetAddAndRemoveTabs::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0]
waitForVaadin
clickvaadin=Vaadin61runcomvaadintestscomponentstabsheetAddAndRemoveTabs::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0]
waitForVaadin
clickvaadin=Vaadin61runcomvaadintestscomponentstabsheetAddAndRemoveTabs::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0]
waitForVaadin
screenCapture
clickvaadin=Vaadin61runcomvaadintestscomponentstabsheetAddAndRemoveTabs::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[1]/domChild[0]/domChild[0]/domChild[0]
waitForVaadin
clickvaadin=Vaadin61runcomvaadintestscomponentstabsheetAddAndRemoveTabs::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/VTabsheetPanel[0]/VHorizontalLayout[1]/ChildComponentContainer[0]/VButton[0]/domChild[0]
waitForVaadin
verifyTextPresentTest 1



Test 3





Close tab












Add new tab
clickvaadin=Vaadin61runcomvaadintestscomponentstabsheetAddAndRemoveTabs::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]
waitForVaadin
verifyTextPresentTest 1



Test 3



Test 4





Close tab












Add new tab
+ + diff --git a/src/com/vaadin/tests/components/tabsheet/PreventTabChange.html b/src/com/vaadin/tests/components/tabsheet/PreventTabChange.html new file mode 100644 index 0000000000..40ab930a21 --- /dev/null +++ b/src/com/vaadin/tests/components/tabsheet/PreventTabChange.html @@ -0,0 +1,77 @@ + + + + + + +PreventTabChange + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
PreventTabChange
open/Vaadin6.1/run/com.vaadin.tests.components.tabsheet.PreventTabChange
waitForVaadin
clickvaadin=Vaadin61runcomvaadintestscomponentstabsheetPreventTabChange::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[1]/domChild[0]/domChild[0]/domChild[0]
waitForVaadin
clickvaadin=Vaadin61runcomvaadintestscomponentstabsheetPreventTabChange::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[2]/domChild[0]/domChild[0]/domChild[0]
waitForVaadin
screenCapture
clickvaadin=Vaadin61runcomvaadintestscomponentstabsheetPreventTabChange::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]
waitForVaadin
clickvaadin=Vaadin61runcomvaadintestscomponentstabsheetPreventTabChange::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[2]/domChild[0]/domChild[0]/domChild[0]
waitForVaadin
screenCapture
+ + diff --git a/src/com/vaadin/tests/components/tabsheet/RemoveTabsTabsheet.html b/src/com/vaadin/tests/components/tabsheet/RemoveTabsTabsheet.html new file mode 100644 index 0000000000..ef75f61ae4 --- /dev/null +++ b/src/com/vaadin/tests/components/tabsheet/RemoveTabsTabsheet.html @@ -0,0 +1,112 @@ + + + + + + +RemoveTabs + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
RemoveTabs
open/Vaadin6.1/run/com.vaadin.tests.components.tabsheet.RemoveTabs
waitForVaadin
verifyTextPresentTab 1



Tab 2



Tab 3



Tab 4



Tab 5





This is the contents of tab 1







close first tab


close last tab


Close current tab


reorder
clickvaadin=Vaadin61runcomvaadintestscomponentstabsheetRemoveTabs::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0]
waitForVaadin
verifyTextPresentTab 2



Tab 3



Tab 4



Tab 5





This is the contents of tab 2







close first tab


close last tab


Close current tab


reorder
clickvaadin=Vaadin61runcomvaadintestscomponentstabsheetRemoveTabs::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[2]/domChild[0]/domChild[0]/domChild[0]
waitForVaadin
clickvaadin=Vaadin61runcomvaadintestscomponentstabsheetRemoveTabs::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[3]/VButton[0]/domChild[0]/domChild[0]
waitForVaadin
verifyTextPresentTab 2



Tab 3



Tab 5





This is the contents of tab 2







close first tab


close last tab


Close current tab


reorder
clickvaadin=Vaadin61runcomvaadintestscomponentstabsheetRemoveTabs::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[4]/VButton[0]/domChild[0]/domChild[0]
waitForVaadin
verifyTextPresentTab 5



Tab 3



Tab 2





This is the contents of tab 5







close first tab


close last tab


Close current tab


reorder
clickvaadin=Vaadin61runcomvaadintestscomponentstabsheetRemoveTabs::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[2]/VButton[0]/domChild[0]/domChild[0]
waitForVaadin
clickvaadin=Vaadin61runcomvaadintestscomponentstabsheetRemoveTabs::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[1]/domChild[0]/domChild[0]/domChild[0]
waitForVaadin
verifyTextPresentTab 5



Tab 3





This is the contents of tab 5

This is the contents of tab 3







close first tab


close last tab


Close current tab


reorder
+ + diff --git a/src/com/vaadin/tests/components/tabsheet/TabSheetCaptions.html b/src/com/vaadin/tests/components/tabsheet/TabSheetCaptions.html new file mode 100644 index 0000000000..d240d4b419 --- /dev/null +++ b/src/com/vaadin/tests/components/tabsheet/TabSheetCaptions.html @@ -0,0 +1,77 @@ + + + + + + +TabSheetCaptions + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TabSheetCaptions
open/run/com.vaadin.tests.components.tabsheet.TabSheetCaptions
verifyTextvaadin=runcomvaadintestscomponentstabsheetTabSheetCaptions::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]Panel initial caption (should also be tab caption)
verifyTextvaadin=runcomvaadintestscomponentstabsheetTabSheetCaptions::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/VTabsheetPanel[0]/VPanel[0]/domChild[0]/domChild[0]/domChild[0]Panel initial caption (should also be tab caption)
waitForVaadin
clickvaadin=runcomvaadintestscomponentstabsheetTabSheetCaptions::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0]
waitForVaadin
verifyTextvaadin=runcomvaadintestscomponentstabsheetTabSheetCaptions::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]This is a new tab caption Sun, 2001-Sep-09
verifyTextvaadin=runcomvaadintestscomponentstabsheetTabSheetCaptions::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/VTabsheetPanel[0]/VPanel[0]/domChild[0]/domChild[0]/domChild[0]Panel initial caption (should also be tab caption)
clickvaadin=runcomvaadintestscomponentstabsheetTabSheetCaptions::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[2]/VButton[0]/domChild[0]/domChild[0]
waitForVaadin
verifyTextvaadin=runcomvaadintestscomponentstabsheetTabSheetCaptions::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]This is a new tab caption Sun, 2001-Sep-09
verifyTextvaadin=runcomvaadintestscomponentstabsheetTabSheetCaptions::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/VTabsheetPanel[0]/VPanel[0]/domChild[0]/domChild[0]/domChild[0]This is a new panel caption Sun, 2001-Sep-09
+ + diff --git a/src/com/vaadin/tests/components/tabsheet/TabSheetCaptions.java b/src/com/vaadin/tests/components/tabsheet/TabSheetCaptions.java index 9e8f4a35f4..699988489f 100644 --- a/src/com/vaadin/tests/components/tabsheet/TabSheetCaptions.java +++ b/src/com/vaadin/tests/components/tabsheet/TabSheetCaptions.java @@ -1,6 +1,8 @@ package com.vaadin.tests.components.tabsheet; +import java.text.SimpleDateFormat; import java.util.Date; +import java.util.Locale; import com.vaadin.tests.components.TestBase; import com.vaadin.ui.Button; @@ -26,6 +28,11 @@ public class TabSheetCaptions extends TestBase { @Override protected void setup() { final TabSheet tabSheet = new TabSheet(); + // Define date and locale so that it doesn't change for machine/time + final SimpleDateFormat dateFormatter = new SimpleDateFormat( + "EEE, yyyy-MMM-dd", Locale.ENGLISH); + final Date date = new Date(); + date.setTime((long) 1000000000000.0); panel1 = new Panel("Panel initial caption (should also be tab caption)"); panel1.setSizeFull(); @@ -37,14 +44,15 @@ public class TabSheetCaptions extends TestBase { button.addListener(new Button.ClickListener() { public void buttonClick(ClickEvent event) { tabSheet.setTabCaption(panel1, "This is a new tab caption " - + new Date()); + + dateFormatter.format(date)); } }); Button button2 = new Button("Update panel caption"); button2.addListener(new Button.ClickListener() { public void buttonClick(ClickEvent event) { - panel1.setCaption("This is a new panel caption " + new Date()); + panel1.setCaption("This is a new panel caption " + + dateFormatter.format(date)); } }); diff --git a/src/com/vaadin/tests/components/tabsheet/TabSheetDisabling.html b/src/com/vaadin/tests/components/tabsheet/TabSheetDisabling.html new file mode 100644 index 0000000000..b55e71eab4 --- /dev/null +++ b/src/com/vaadin/tests/components/tabsheet/TabSheetDisabling.html @@ -0,0 +1,162 @@ + + + + + + +TabSheetDisabling + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TabSheetDisabling
open/Vaadin6.1/run/com.vaadin.tests.components.tabsheet.TabSheetDisabling
waitForVaadin
clickvaadin=Vaadin61runcomvaadintestscomponentstabsheetTabSheetDisabling::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/VTabsheetPanel[0]/VButton[0]/domChild[0]/domChild[0]
waitForVaadin
clickvaadin=Vaadin61runcomvaadintestscomponentstabsheetTabSheetDisabling::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[5]/domChild[0]/domChild[0]/domChild[0]
waitForVaadin
screenCapture1
clickvaadin=Vaadin61runcomvaadintestscomponentstabsheetTabSheetDisabling::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0]
waitForVaadin
clickvaadin=Vaadin61runcomvaadintestscomponentstabsheetTabSheetDisabling::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0]
screenCapture1
waitForVaadin
clickvaadin=Vaadin61runcomvaadintestscomponentstabsheetTabSheetDisabling::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/VTabsheetPanel[0]/VButton[2]/domChild[0]/domChild[0]
waitForVaadin
clickvaadin=Vaadin61runcomvaadintestscomponentstabsheetTabSheetDisabling::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[6]/domChild[0]/domChild[0]/domChild[0]
waitForVaadin
screenCapture2
clickvaadin=Vaadin61runcomvaadintestscomponentstabsheetTabSheetDisabling::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0]
waitForVaadin
clickvaadin=Vaadin61runcomvaadintestscomponentstabsheetTabSheetDisabling::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0]
waitForVaadin
clickvaadin=Vaadin61runcomvaadintestscomponentstabsheetTabSheetDisabling::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/VTabsheetPanel[0]/VButton[3]/domChild[0]/domChild[0]
screenCapture3
waitForVaadin
clickvaadin=Vaadin61runcomvaadintestscomponentstabsheetTabSheetDisabling::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/VTabsheetPanel[0]/VButton[1]/domChild[0]/domChild[0]
waitForVaadin
clickvaadin=Vaadin61runcomvaadintestscomponentstabsheetTabSheetDisabling::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/VTabsheetPanel[0]/VButton[2]/domChild[0]/domChild[0]
waitForVaadin
screenCapture4
+ + diff --git a/src/com/vaadin/tests/components/tabsheet/TabSheetIcons.html b/src/com/vaadin/tests/components/tabsheet/TabSheetIcons.html new file mode 100644 index 0000000000..425da11af4 --- /dev/null +++ b/src/com/vaadin/tests/components/tabsheet/TabSheetIcons.html @@ -0,0 +1,27 @@ + + + + + + +TabSheetIcons + + + + + + + + + + + + + + + + + +
TabSheetIcons
open/run/com.vaadin.tests.components.tabsheet.TabSheetIcons
screenCapture
+ + diff --git a/src/com/vaadin/tests/components/tabsheet/TabSheetIcons.java b/src/com/vaadin/tests/components/tabsheet/TabSheetIcons.java index c295f1a9e5..49c9784eb9 100644 --- a/src/com/vaadin/tests/components/tabsheet/TabSheetIcons.java +++ b/src/com/vaadin/tests/components/tabsheet/TabSheetIcons.java @@ -37,11 +37,11 @@ public class TabSheetIcons extends TestBase { Component[] tab = new Component[3]; tab[0] = new Label("This is tab 1"); - tab[0].setIcon(new ThemeResource("icons/32/folder-add.png")); + tab[0].setIcon(new ThemeResource("../runo/icons/32/folder-add.png")); tab[0].setCaption("tab number 1"); tab[1] = new TextField("This is tab 2", "Contents of tab 2 textfield"); tab[2] = new Label("This is tab 3"); - tab[2].setIcon(new ThemeResource("icons/16/folder-add.png")); + tab[2].setIcon(new ThemeResource("../runo/icons/16/folder-add.png")); tab[2].setCaption("tab number 3"); for (Component c : tab) { diff --git a/src/com/vaadin/tests/components/tabsheet/TabSheetWithoutTabCaption.html b/src/com/vaadin/tests/components/tabsheet/TabSheetWithoutTabCaption.html new file mode 100644 index 0000000000..309eab2731 --- /dev/null +++ b/src/com/vaadin/tests/components/tabsheet/TabSheetWithoutTabCaption.html @@ -0,0 +1,32 @@ + + + + + + +TabSheetWithoutTabCaption + + + + + + + + + + + + + + + + + + + + + + +
TabSheetWithoutTabCaption
open/Vaadin6.1/run/com.vaadin.tests.components.tabsheet.TabSheetWithoutTabCaption
waitForVaadin
screenCapture
+ + diff --git a/src/com/vaadin/tests/components/tabsheet/TabsheetTooltip.html b/src/com/vaadin/tests/components/tabsheet/TabsheetTooltip.html new file mode 100644 index 0000000000..91b9a4898c --- /dev/null +++ b/src/com/vaadin/tests/components/tabsheet/TabsheetTooltip.html @@ -0,0 +1,82 @@ + + + + + + +TabsheetTooltip + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TabsheetTooltip
open/Vaadin6.1/run/com.vaadin.tests.components.tabsheet.TabsheetTooltip
waitForVaadin
verifyTextPresentTab




Tab 2





Label
clickvaadin=Vaadin61runcomvaadintestscomponentstabsheetTabsheetTooltip::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[1]/domChild[0]/domChild[0]/domChild[0]
waitForVaadin
verifyTextPresentTab




Tab 2





Label

Another label, d'oh
mouseOvervaadin=Vaadin61runcomvaadintestscomponentstabsheetTabsheetTooltip::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]
waitForVaadin
screenCapture
clickvaadin=Vaadin61runcomvaadintestscomponentstabsheetTabsheetTooltip::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[1]/domChild[0]/domChild[0]/domChild[0]
waitForVaadin
mouseOvervaadin=Vaadin61runcomvaadintestscomponentstabsheetTabsheetTooltip::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[1]/domChild[0]/domChild[0]/domChild[0]
screenCapture
+ + diff --git a/src/com/vaadin/tests/components/tabsheet/VerticalScrollbarPosition.html b/src/com/vaadin/tests/components/tabsheet/VerticalScrollbarPosition.html new file mode 100644 index 0000000000..207c6da909 --- /dev/null +++ b/src/com/vaadin/tests/components/tabsheet/VerticalScrollbarPosition.html @@ -0,0 +1,77 @@ + + + + + + +VerticalScrollbarPosition + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
VerticalScrollbarPosition
open/Vaadin6.1/run/com.vaadin.tests.components.tabsheet.VerticalScrollbarPosition
waitForVaadin
screenCapture1
clickvaadin=Vaadin61runcomvaadintestscomponentstabsheetVerticalScrollbarPosition::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/domChild[0]/domChild[1]/domChild[1]
waitForVaadin
screenCapture2
clickvaadin=Vaadin61runcomvaadintestscomponentstabsheetVerticalScrollbarPosition::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[1]/domChild[0]/domChild[0]/domChild[0]
waitForVaadin
screenCapture3
clickvaadin=Vaadin61runcomvaadintestscomponentstabsheetVerticalScrollbarPosition::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]
waitForVaadin
screenCapture1
+ + diff --git a/src/com/vaadin/tests/components/tree/TreeNodeCaptionWrapping.html b/src/com/vaadin/tests/components/tree/TreeNodeCaptionWrapping.html new file mode 100644 index 0000000000..5691f71a5a --- /dev/null +++ b/src/com/vaadin/tests/components/tree/TreeNodeCaptionWrapping.html @@ -0,0 +1,37 @@ + + + + + + +TreeNodeCaptionWrapping + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TreeNodeCaptionWrapping
open/Vaadin6.1/run/com.vaadin.tests.components.tree.TreeNodeCaptionWrapping
waitForVaadin
verifyTextPresent1




A very long item that should not wrap


Subitem - also long
screenCapture
+ + diff --git a/src/com/vaadin/tests/components/window/CenteredWindowWithUndefinedSize.html b/src/com/vaadin/tests/components/window/CenteredWindowWithUndefinedSize.html new file mode 100644 index 0000000000..8cf62a063a --- /dev/null +++ b/src/com/vaadin/tests/components/window/CenteredWindowWithUndefinedSize.html @@ -0,0 +1,32 @@ + + + + + + +CenteredWindowWithUndefinedSize + + + + + + + + + + + + + + + + + + + + + + +
CenteredWindowWithUndefinedSize
open/Vaadin6.1/run/com.vaadin.tests.components.window.CenteredWindowWithUndefinedSize
waitForVaadin
screenCapture
+ + diff --git a/src/com/vaadin/tests/components/window/EmbeddedInSubWindow.html b/src/com/vaadin/tests/components/window/EmbeddedInSubWindow.html new file mode 100644 index 0000000000..e6480969d5 --- /dev/null +++ b/src/com/vaadin/tests/components/window/EmbeddedInSubWindow.html @@ -0,0 +1,32 @@ + + + + + + +EmbeddedInSubWindow + + + + + + + + + + + + + + + + + + + + + + +
EmbeddedInSubWindow
open/Vaadin6.1/run/com.vaadin.tests.components.window.EmbeddedInSubWindow
waitForVaadin
screenCapture
+ + diff --git a/src/com/vaadin/tests/components/window/SubwindowInvalidLayout.html b/src/com/vaadin/tests/components/window/SubwindowInvalidLayout.html new file mode 100644 index 0000000000..307a9ca712 --- /dev/null +++ b/src/com/vaadin/tests/components/window/SubwindowInvalidLayout.html @@ -0,0 +1,32 @@ + + + + + + +SubwindowInvalidLayout + + + + + + + + + + + + + + + + + + + + + + +
SubwindowInvalidLayout
open/Vaadin6.1/run/com.vaadin.tests.components.window.SubwindowInvalidLayout
waitForVaadin
screenCapture
+ + diff --git a/src/com/vaadin/tests/components/window/TestTooSmallSubwindowSize.html b/src/com/vaadin/tests/components/window/TestTooSmallSubwindowSize.html new file mode 100644 index 0000000000..3f0e95fa13 --- /dev/null +++ b/src/com/vaadin/tests/components/window/TestTooSmallSubwindowSize.html @@ -0,0 +1,32 @@ + + + + + + +TestTooSmallSubwindowSize + + + + + + + + + + + + + + + + + + + + + + +
TestTooSmallSubwindowSize
open/Vaadin6.1/run/com.vaadin.tests.components.window.TestTooSmallSubwindowSize
waitForVaadin
screenCapture
+ + diff --git a/src/com/vaadin/tests/components/window/UndefinedWidthSubWindow.html b/src/com/vaadin/tests/components/window/UndefinedWidthSubWindow.html new file mode 100644 index 0000000000..fff444fe21 --- /dev/null +++ b/src/com/vaadin/tests/components/window/UndefinedWidthSubWindow.html @@ -0,0 +1,32 @@ + + + + + + +UndefinedWidthSubWindow + + + + + + + + + + + + + + + + + + + + + + +
UndefinedWidthSubWindow
open/Vaadin6.1/run/com.vaadin.tests.components.window.UndefinedWidthSubWindow
waitForVaadin
screenCapture
+ + diff --git a/src/com/vaadin/tests/components/window/WindowShouldRemoveActionHandler.html b/src/com/vaadin/tests/components/window/WindowShouldRemoveActionHandler.html new file mode 100644 index 0000000000..6511221bc8 --- /dev/null +++ b/src/com/vaadin/tests/components/window/WindowShouldRemoveActionHandler.html @@ -0,0 +1,107 @@ + + + + + + +WindowShouldRemoveActionHandler + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
WindowShouldRemoveActionHandler
open/Vaadin6.1/run/com.vaadin.tests.components.window.WindowShouldRemoveActionHandler
waitForVaadin
clickvaadin=Vaadin61runcomvaadintestscomponentswindowWindowShouldRemoveActionHandler::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0]
waitForVaadin
clickvaadin=Vaadin61runcomvaadintestscomponentswindowWindowShouldRemoveActionHandler::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[2]/VButton[0]/domChild[0]/domChild[0]
waitForVaadin
verifyTitleA panel with 2 action handlers
clickvaadin=Vaadin61runcomvaadintestscomponentswindowWindowShouldRemoveActionHandler::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0]
waitForVaadin
verifyTitleA panel with 3 action handlers
clickvaadin=Vaadin61runcomvaadintestscomponentswindowWindowShouldRemoveActionHandler::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[3]/VButton[0]/domChild[0]/domChild[0]
waitForVaadin
clickvaadin=Vaadin61runcomvaadintestscomponentswindowWindowShouldRemoveActionHandler::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[3]/VButton[0]/domChild[0]/domChild[0]
waitForVaadin
verifyTitleA panel with 3 action handlers - Removed handler - Removed handler
clickvaadin=Vaadin61runcomvaadintestscomponentswindowWindowShouldRemoveActionHandler::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0]
waitForVaadin
verifyTitleA panel with 2 action handlers
+ + diff --git a/tests/test.xml b/tests/test.xml index aa37a564ae..558d13e1d9 100644 --- a/tests/test.xml +++ b/tests/test.xml @@ -5,38 +5,45 @@ - + - - + + + + + + + + + + + - - - + + + - - - - + - + + - + @@ -44,6 +51,7 @@ + @@ -62,6 +70,7 @@ + @@ -76,26 +85,34 @@ - + - + - - + + + - - - - - - + + + + + - - + + + + + + + + + + @@ -106,14 +123,24 @@ + - + + + + + + + + + + @@ -126,5 +153,5 @@ - + -- cgit v1.2.3 From 10fbfac43675764c96ece75e4f48a53c2ef962b7 Mon Sep 17 00:00:00 2001 From: Mikael Grankvist Date: Mon, 14 Sep 2009 13:57:56 +0000 Subject: Update faulty identifiers in .html test cases. svn changeset:8763/svn branch:6.1 --- .../absolutelayout/AbsoluteLayoutClipping.html | 2 +- .../AbstractFieldCommitWithInvalidValues.html | 10 ++++----- .../tests/components/accordion/RemoveTabs.html | 14 ++++++------- .../TestBeanItemContainerUsage.html | 2 +- .../components/button/ButtonUndefinedWidth.html | 10 ++++----- .../tests/components/button/DisabledButtons.html | 2 +- .../tests/components/button/IE7ButtonWithIcon.html | 2 +- .../button/TooltipForDisabledButton.html | 10 ++++----- .../tests/components/caption/LargeCaptionIcon.html | 2 +- .../checkbox/CheckboxCaptionWrapping.html | 2 +- .../tests/components/checkbox/CheckboxIcon.html | 6 +++--- .../components/combobox/ComboBoxItemIcon.html | 4 ++-- .../components/combobox/ComboBoxNavigation.html | 10 ++++----- .../tests/components/embedded/EmbeddedTooltip.html | 4 ++-- .../form/FormCommitWithInvalidValues.html | 16 +++++++-------- .../components/form/FormRenderingFlicker.html | 4 ++-- .../label/HundredPercentWideLabelResize.html | 6 +++--- .../tests/components/label/LabelWrapping.html | 6 +++--- .../tests/components/link/LinkTargetSize.html | 4 ++-- .../orderedlayout/ReplaceComponentNPE.html | 4 ++-- .../components/popupview/PopupViewOffScreen.html | 4 ++-- .../components/richtextarea/RichTextAreaSize.html | 2 +- .../splitpanel/SplitPanelSplitterWidth.html | 4 ++-- .../components/table/ClippedComponentsInTable.html | 2 +- .../table/ColumnCollapsingAndColumnExpansion.html | 4 ++-- .../tests/components/table/ColumnExpandRatio.html | 2 +- .../table/ColumnExpandWithFixedColumns.html | 2 +- .../table/LabelEmbeddedClickThroughForTable.html | 6 +++--- .../tests/components/table/MissingScrollbar.html | 6 +++--- .../components/table/PropertyValueChange.html | 10 ++++----- .../tests/components/table/RowAdditionTest.html | 24 +++++++++++----------- .../components/table/TableLastRowMissing.html | 2 +- .../components/table/TablePageLengthUpdate.html | 18 ++++++++-------- .../tests/components/table/TableRowHeight.html | 2 +- .../tests/components/table/TableRowHeight2.html | 6 +++--- .../table/TableVisibleColumnsUpdate.html | 8 ++++---- .../components/table/TextFieldRelativeWidth.html | 6 +++--- .../components/tabsheet/AddAndRemoveTabs.html | 16 +++++++-------- .../components/tabsheet/PreventTabChange.html | 10 ++++----- .../components/tabsheet/RemoveTabsTabsheet.html | 14 ++++++------- .../components/tabsheet/TabSheetDisabling.html | 24 +++++++++++----------- .../tabsheet/TabSheetWithoutTabCaption.html | 2 +- .../tests/components/tabsheet/TabsheetTooltip.html | 10 ++++----- .../tabsheet/VerticalScrollbarPosition.html | 8 ++++---- .../components/tree/TreeNodeCaptionWrapping.html | 2 +- .../window/CenteredWindowWithUndefinedSize.html | 2 +- .../components/window/EmbeddedInSubWindow.html | 2 +- .../components/window/SubwindowInvalidLayout.html | 2 +- .../window/TestTooSmallSubwindowSize.html | 2 +- .../components/window/UndefinedWidthSubWindow.html | 2 +- .../window/WindowShouldRemoveActionHandler.html | 14 ++++++------- tests/test.xml | 5 ++++- 52 files changed, 173 insertions(+), 170 deletions(-) (limited to 'src/com') diff --git a/src/com/vaadin/tests/components/absolutelayout/AbsoluteLayoutClipping.html b/src/com/vaadin/tests/components/absolutelayout/AbsoluteLayoutClipping.html index f39f409e8c..ff5c890abf 100644 --- a/src/com/vaadin/tests/components/absolutelayout/AbsoluteLayoutClipping.html +++ b/src/com/vaadin/tests/components/absolutelayout/AbsoluteLayoutClipping.html @@ -13,7 +13,7 @@ open - /Vaadin6.1/run/com.vaadin.tests.components.absolutelayout.AbsoluteLayoutClipping + /run/com.vaadin.tests.components.absolutelayout.AbsoluteLayoutClipping diff --git a/src/com/vaadin/tests/components/abstractfield/AbstractFieldCommitWithInvalidValues.html b/src/com/vaadin/tests/components/abstractfield/AbstractFieldCommitWithInvalidValues.html index cfc855cf99..ef2c784e15 100644 --- a/src/com/vaadin/tests/components/abstractfield/AbstractFieldCommitWithInvalidValues.html +++ b/src/com/vaadin/tests/components/abstractfield/AbstractFieldCommitWithInvalidValues.html @@ -13,7 +13,7 @@ open - /Vaadin6.1/run/com.vaadin.tests.components.abstractfield.AbstractFieldCommitWithInvalidValues + /run/com.vaadin.tests.components.abstractfield.AbstractFieldCommitWithInvalidValues @@ -23,7 +23,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentsabstractfieldAbstractFieldCommitWithInvalidValues::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0] + vaadin=runcomvaadintestscomponentsabstractfieldAbstractFieldCommitWithInvalidValues::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0] @@ -38,7 +38,7 @@ clickAt - vaadin=Vaadin61runcomvaadintestscomponentsabstractfieldAbstractFieldCommitWithInvalidValues::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTextField[0] + vaadin=runcomvaadintestscomponentsabstractfieldAbstractFieldCommitWithInvalidValues::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTextField[0] @@ -48,12 +48,12 @@ type - vaadin=Vaadin61runcomvaadintestscomponentsabstractfieldAbstractFieldCommitWithInvalidValues::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTextField[0] + vaadin=runcomvaadintestscomponentsabstractfieldAbstractFieldCommitWithInvalidValues::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTextField[0] long click - vaadin=Vaadin61runcomvaadintestscomponentsabstractfieldAbstractFieldCommitWithInvalidValues::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0] + vaadin=runcomvaadintestscomponentsabstractfieldAbstractFieldCommitWithInvalidValues::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0] diff --git a/src/com/vaadin/tests/components/accordion/RemoveTabs.html b/src/com/vaadin/tests/components/accordion/RemoveTabs.html index dd9fe952e6..ec24ade8ce 100644 --- a/src/com/vaadin/tests/components/accordion/RemoveTabs.html +++ b/src/com/vaadin/tests/components/accordion/RemoveTabs.html @@ -13,7 +13,7 @@ open - /Vaadin6.1/run/com.vaadin.tests.components.accordion.RemoveTabs + /run/com.vaadin.tests.components.accordion.RemoveTabs @@ -28,7 +28,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentsaccordionRemoveTabs::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0] + vaadin=runcomvaadintestscomponentsaccordionRemoveTabs::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0] @@ -43,7 +43,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentsaccordionRemoveTabs::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VAccordion[0]/domChild[2]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentsaccordionRemoveTabs::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VAccordion[0]/domChild[2]/domChild[0]/domChild[0] @@ -58,7 +58,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentsaccordionRemoveTabs::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[3]/VButton[0]/domChild[0] + vaadin=runcomvaadintestscomponentsaccordionRemoveTabs::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[3]/VButton[0]/domChild[0] @@ -73,7 +73,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentsaccordionRemoveTabs::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[4]/VButton[0]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentsaccordionRemoveTabs::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[4]/VButton[0]/domChild[0]/domChild[0] @@ -88,7 +88,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentsaccordionRemoveTabs::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[2]/VButton[0]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentsaccordionRemoveTabs::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[2]/VButton[0]/domChild[0]/domChild[0] @@ -103,7 +103,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentsaccordionRemoveTabs::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentsaccordionRemoveTabs::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0] diff --git a/src/com/vaadin/tests/components/beanitemcontainer/TestBeanItemContainerUsage.html b/src/com/vaadin/tests/components/beanitemcontainer/TestBeanItemContainerUsage.html index 7b2b61bc79..ea49b92c6a 100644 --- a/src/com/vaadin/tests/components/beanitemcontainer/TestBeanItemContainerUsage.html +++ b/src/com/vaadin/tests/components/beanitemcontainer/TestBeanItemContainerUsage.html @@ -13,7 +13,7 @@ open - /Vaadin6.1/run/com.vaadin.tests.components.beanitemcontainer.TestBeanItemContainerUsage + /run/com.vaadin.tests.components.beanitemcontainer.TestBeanItemContainerUsage diff --git a/src/com/vaadin/tests/components/button/ButtonUndefinedWidth.html b/src/com/vaadin/tests/components/button/ButtonUndefinedWidth.html index f5c90750d1..7c9b3a6559 100644 --- a/src/com/vaadin/tests/components/button/ButtonUndefinedWidth.html +++ b/src/com/vaadin/tests/components/button/ButtonUndefinedWidth.html @@ -13,7 +13,7 @@ open - /Vaadin6.1/run/com.vaadin.tests.components.button.ButtonUndefinedWidth + /run/com.vaadin.tests.components.button.ButtonUndefinedWidth @@ -33,7 +33,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentsbuttonButtonUndefinedWidth::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VButton[0]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentsbuttonButtonUndefinedWidth::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VButton[0]/domChild[0]/domChild[0] @@ -43,7 +43,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentsbuttonButtonUndefinedWidth::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VNativeButton[0] + vaadin=runcomvaadintestscomponentsbuttonButtonUndefinedWidth::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VNativeButton[0] @@ -53,7 +53,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentsbuttonButtonUndefinedWidth::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[2]/VScrollTable[0]/ScrollPanel[0]/VScrollTable$VScrollTableBody[0]/VScrollTable$VScrollTableBody$VScrollTableRow[0]/VButton[0]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentsbuttonButtonUndefinedWidth::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[2]/VScrollTable[0]/ScrollPanel[0]/VScrollTable$VScrollTableBody[0]/VScrollTable$VScrollTableBody$VScrollTableRow[0]/VButton[0]/domChild[0]/domChild[0] @@ -63,7 +63,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentsbuttonButtonUndefinedWidth::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[2]/VScrollTable[0]/ScrollPanel[0]/VScrollTable$VScrollTableBody[0]/VScrollTable$VScrollTableBody$VScrollTableRow[1]/VNativeButton[0] + vaadin=runcomvaadintestscomponentsbuttonButtonUndefinedWidth::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[2]/VScrollTable[0]/ScrollPanel[0]/VScrollTable$VScrollTableBody[0]/VScrollTable$VScrollTableBody$VScrollTableRow[1]/VNativeButton[0] diff --git a/src/com/vaadin/tests/components/button/DisabledButtons.html b/src/com/vaadin/tests/components/button/DisabledButtons.html index 1a73bdee5c..65584fd4d0 100644 --- a/src/com/vaadin/tests/components/button/DisabledButtons.html +++ b/src/com/vaadin/tests/components/button/DisabledButtons.html @@ -13,7 +13,7 @@ open - /Vaadin6.1/run/com.vaadin.tests.components.button.DisabledButtons + /run/com.vaadin.tests.components.button.DisabledButtons diff --git a/src/com/vaadin/tests/components/button/IE7ButtonWithIcon.html b/src/com/vaadin/tests/components/button/IE7ButtonWithIcon.html index 8eb2df869c..a05b439759 100644 --- a/src/com/vaadin/tests/components/button/IE7ButtonWithIcon.html +++ b/src/com/vaadin/tests/components/button/IE7ButtonWithIcon.html @@ -13,7 +13,7 @@ open - /Vaadin6.1/run/com.vaadin.tests.components.button.IE7ButtonWithIcon + /run/com.vaadin.tests.components.button.IE7ButtonWithIcon diff --git a/src/com/vaadin/tests/components/button/TooltipForDisabledButton.html b/src/com/vaadin/tests/components/button/TooltipForDisabledButton.html index 809b07e736..f5dc4dfebe 100644 --- a/src/com/vaadin/tests/components/button/TooltipForDisabledButton.html +++ b/src/com/vaadin/tests/components/button/TooltipForDisabledButton.html @@ -13,7 +13,7 @@ open - /Vaadin6.1/run/com.vaadin.tests.components.button.TooltipForDisabledButton + /run/com.vaadin.tests.components.button.TooltipForDisabledButton @@ -23,7 +23,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentsbuttonTooltipForDisabledButton::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VButton[0]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentsbuttonTooltipForDisabledButton::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VButton[0]/domChild[0]/domChild[0] @@ -33,7 +33,7 @@ mouseOver - vaadin=Vaadin61runcomvaadintestscomponentsbuttonTooltipForDisabledButton::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VButton[0]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentsbuttonTooltipForDisabledButton::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VButton[0]/domChild[0]/domChild[0] @@ -58,7 +58,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentsbuttonTooltipForDisabledButton::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentsbuttonTooltipForDisabledButton::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0] @@ -68,7 +68,7 @@ mouseOver - vaadin=Vaadin61runcomvaadintestscomponentsbuttonTooltipForDisabledButton::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentsbuttonTooltipForDisabledButton::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0] diff --git a/src/com/vaadin/tests/components/caption/LargeCaptionIcon.html b/src/com/vaadin/tests/components/caption/LargeCaptionIcon.html index fd0a3c4394..61a014c975 100644 --- a/src/com/vaadin/tests/components/caption/LargeCaptionIcon.html +++ b/src/com/vaadin/tests/components/caption/LargeCaptionIcon.html @@ -13,7 +13,7 @@ open - /Vaadin6.1/run/com.vaadin.tests.components.caption.LargeCaptionIcon + /run/com.vaadin.tests.components.caption.LargeCaptionIcon diff --git a/src/com/vaadin/tests/components/checkbox/CheckboxCaptionWrapping.html b/src/com/vaadin/tests/components/checkbox/CheckboxCaptionWrapping.html index 8df99e7fa8..26ecc95721 100644 --- a/src/com/vaadin/tests/components/checkbox/CheckboxCaptionWrapping.html +++ b/src/com/vaadin/tests/components/checkbox/CheckboxCaptionWrapping.html @@ -13,7 +13,7 @@ open - /Vaadin6.1/run/com.vaadin.tests.components.checkbox.CheckboxCaptionWrapping + /run/com.vaadin.tests.components.checkbox.CheckboxCaptionWrapping diff --git a/src/com/vaadin/tests/components/checkbox/CheckboxIcon.html b/src/com/vaadin/tests/components/checkbox/CheckboxIcon.html index 0af95f53e5..1404a052f0 100644 --- a/src/com/vaadin/tests/components/checkbox/CheckboxIcon.html +++ b/src/com/vaadin/tests/components/checkbox/CheckboxIcon.html @@ -13,7 +13,7 @@ open - /Vaadin6.1/run/com.vaadin.tests.components.checkbox.CheckboxIcon + /run/com.vaadin.tests.components.checkbox.CheckboxIcon @@ -33,7 +33,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentscheckboxCheckboxIcon::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VCheckBox[0]/domChild[0] + vaadin=runcomvaadintestscomponentscheckboxCheckboxIcon::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VCheckBox[0]/domChild[0] @@ -43,7 +43,7 @@ mouseOver - vaadin=Vaadin61runcomvaadintestscomponentscheckboxCheckboxIcon::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VCheckBox[0]/domChild[0] + vaadin=runcomvaadintestscomponentscheckboxCheckboxIcon::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VCheckBox[0]/domChild[0] diff --git a/src/com/vaadin/tests/components/combobox/ComboBoxItemIcon.html b/src/com/vaadin/tests/components/combobox/ComboBoxItemIcon.html index 2e50f8361c..447000d6d7 100644 --- a/src/com/vaadin/tests/components/combobox/ComboBoxItemIcon.html +++ b/src/com/vaadin/tests/components/combobox/ComboBoxItemIcon.html @@ -13,7 +13,7 @@ open - /Vaadin6.1/run/com.vaadin.tests.components.combobox.ComboBoxItemIcon + /run/com.vaadin.tests.components.combobox.ComboBoxItemIcon @@ -23,7 +23,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentscomboboxComboBoxItemIcon::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VFilterSelect[0]/domChild[1] + vaadin=runcomvaadintestscomponentscomboboxComboBoxItemIcon::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VFilterSelect[0]/domChild[1] diff --git a/src/com/vaadin/tests/components/combobox/ComboBoxNavigation.html b/src/com/vaadin/tests/components/combobox/ComboBoxNavigation.html index a3d1ccdf03..38f82be079 100644 --- a/src/com/vaadin/tests/components/combobox/ComboBoxNavigation.html +++ b/src/com/vaadin/tests/components/combobox/ComboBoxNavigation.html @@ -13,7 +13,7 @@ open - /Vaadin6.1/run/com.vaadin.tests.components.combobox.ComboBoxNavigation + /run/com.vaadin.tests.components.combobox.ComboBoxNavigation @@ -23,7 +23,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentscomboboxComboBoxNavigation::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VFilterSelect[0]/domChild[0] + vaadin=runcomvaadintestscomponentscomboboxComboBoxNavigation::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VFilterSelect[0]/domChild[0] @@ -33,7 +33,7 @@ keyPress - vaadin=Vaadin61runcomvaadintestscomponentscomboboxComboBoxNavigation::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VFilterSelect[0]/domChild[0] + vaadin=runcomvaadintestscomponentscomboboxComboBoxNavigation::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VFilterSelect[0]/domChild[0] \25 @@ -48,7 +48,7 @@ keyPress - vaadin=Vaadin61runcomvaadintestscomponentscomboboxComboBoxNavigation::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VFilterSelect[0]/domChild[0] + vaadin=runcomvaadintestscomponentscomboboxComboBoxNavigation::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VFilterSelect[0]/domChild[0] \25 @@ -63,7 +63,7 @@ keyPress - vaadin=Vaadin61runcomvaadintestscomponentscomboboxComboBoxNavigation::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VFilterSelect[0]/domChild[0] + vaadin=runcomvaadintestscomponentscomboboxComboBoxNavigation::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VFilterSelect[0]/domChild[0] \24 diff --git a/src/com/vaadin/tests/components/embedded/EmbeddedTooltip.html b/src/com/vaadin/tests/components/embedded/EmbeddedTooltip.html index 8028ffa66b..43e9863fb9 100644 --- a/src/com/vaadin/tests/components/embedded/EmbeddedTooltip.html +++ b/src/com/vaadin/tests/components/embedded/EmbeddedTooltip.html @@ -13,7 +13,7 @@ open - /Vaadin6.1/run/com.vaadin.tests.components.embedded.EmbeddedTooltip + /run/com.vaadin.tests.components.embedded.EmbeddedTooltip @@ -28,7 +28,7 @@ mouseOver - vaadin=Vaadin61runcomvaadintestscomponentsembeddedEmbeddedTooltip::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VEmbedded[0]/domChild[0] + vaadin=runcomvaadintestscomponentsembeddedEmbeddedTooltip::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VEmbedded[0]/domChild[0] diff --git a/src/com/vaadin/tests/components/form/FormCommitWithInvalidValues.html b/src/com/vaadin/tests/components/form/FormCommitWithInvalidValues.html index ada010ef8d..b0305e60dc 100644 --- a/src/com/vaadin/tests/components/form/FormCommitWithInvalidValues.html +++ b/src/com/vaadin/tests/components/form/FormCommitWithInvalidValues.html @@ -13,7 +13,7 @@ open - /Vaadin6.1/run/com.vaadin.tests.components.form.FormCommitWithInvalidValues + /run/com.vaadin.tests.components.form.FormCommitWithInvalidValues @@ -23,7 +23,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentsformFormCommitWithInvalidValues::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0] + vaadin=runcomvaadintestscomponentsformFormCommitWithInvalidValues::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0] @@ -38,7 +38,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentsformFormCommitWithInvalidValues::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VForm[0]/VFormLayout[0]/VFormLayout$VFormLayoutTable[0]/VTextField[0] + vaadin=runcomvaadintestscomponentsformFormCommitWithInvalidValues::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VForm[0]/VFormLayout[0]/VFormLayout$VFormLayoutTable[0]/VTextField[0] @@ -48,7 +48,7 @@ type - vaadin=Vaadin61runcomvaadintestscomponentsformFormCommitWithInvalidValues::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VForm[0]/VFormLayout[0]/VFormLayout$VFormLayoutTable[0]/VTextField[0] + vaadin=runcomvaadintestscomponentsformFormCommitWithInvalidValues::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VForm[0]/VFormLayout[0]/VFormLayout$VFormLayoutTable[0]/VTextField[0] 1 @@ -58,7 +58,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentsformFormCommitWithInvalidValues::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0] + vaadin=runcomvaadintestscomponentsformFormCommitWithInvalidValues::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0] @@ -73,7 +73,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentsformFormCommitWithInvalidValues::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VForm[0]/VFormLayout[0]/VFormLayout$VFormLayoutTable[0]/VTextField[0] + vaadin=runcomvaadintestscomponentsformFormCommitWithInvalidValues::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VForm[0]/VFormLayout[0]/VFormLayout$VFormLayoutTable[0]/VTextField[0] @@ -83,7 +83,7 @@ type - vaadin=Vaadin61runcomvaadintestscomponentsformFormCommitWithInvalidValues::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VForm[0]/VFormLayout[0]/VFormLayout$VFormLayoutTable[0]/VTextField[0] + vaadin=runcomvaadintestscomponentsformFormCommitWithInvalidValues::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VForm[0]/VFormLayout[0]/VFormLayout$VFormLayoutTable[0]/VTextField[0] 123 @@ -93,7 +93,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentsformFormCommitWithInvalidValues::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentsformFormCommitWithInvalidValues::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0] diff --git a/src/com/vaadin/tests/components/form/FormRenderingFlicker.html b/src/com/vaadin/tests/components/form/FormRenderingFlicker.html index 9da5e4a08e..a99556d6d6 100644 --- a/src/com/vaadin/tests/components/form/FormRenderingFlicker.html +++ b/src/com/vaadin/tests/components/form/FormRenderingFlicker.html @@ -13,7 +13,7 @@ open - /Vaadin6.1/run/com.vaadin.tests.components.form.FormRenderingFlicker + /run/com.vaadin.tests.components.form.FormRenderingFlicker @@ -28,7 +28,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentsformFormRenderingFlicker::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VPanel[0]/VVerticalLayout[0]/ChildComponentContainer[0]/VScrollTable[0]/domChild[1]/domChild[0]/domChild[1]/domChild[0]/domChild[1]/domChild[0] + vaadin=runcomvaadintestscomponentsformFormRenderingFlicker::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VPanel[0]/VVerticalLayout[0]/ChildComponentContainer[0]/VScrollTable[0]/domChild[1]/domChild[0]/domChild[1]/domChild[0]/domChild[1]/domChild[0] diff --git a/src/com/vaadin/tests/components/label/HundredPercentWideLabelResize.html b/src/com/vaadin/tests/components/label/HundredPercentWideLabelResize.html index 4608c60c11..667f08ba4f 100644 --- a/src/com/vaadin/tests/components/label/HundredPercentWideLabelResize.html +++ b/src/com/vaadin/tests/components/label/HundredPercentWideLabelResize.html @@ -13,7 +13,7 @@ open - /Vaadin6.1/run/com.vaadin.tests.components.label.HundredPercentWideLabelResize + /run/com.vaadin.tests.components.label.HundredPercentWideLabelResize @@ -28,7 +28,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentslabelHundredPercentWideLabelResize::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentslabelHundredPercentWideLabelResize::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0] @@ -43,7 +43,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentslabelHundredPercentWideLabelResize::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentslabelHundredPercentWideLabelResize::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0] diff --git a/src/com/vaadin/tests/components/label/LabelWrapping.html b/src/com/vaadin/tests/components/label/LabelWrapping.html index 91d5ba91a7..b8038a75b4 100644 --- a/src/com/vaadin/tests/components/label/LabelWrapping.html +++ b/src/com/vaadin/tests/components/label/LabelWrapping.html @@ -13,7 +13,7 @@ open - /Vaadin6.1/run/com.vaadin.tests.components.label.LabelWrapping + /run/com.vaadin.tests.components.label.LabelWrapping @@ -28,7 +28,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentslabelLabelWrapping::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VHorizontalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0] + vaadin=runcomvaadintestscomponentslabelLabelWrapping::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VHorizontalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0] @@ -43,7 +43,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentslabelLabelWrapping::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VHorizontalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0] + vaadin=runcomvaadintestscomponentslabelLabelWrapping::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VHorizontalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0] diff --git a/src/com/vaadin/tests/components/link/LinkTargetSize.html b/src/com/vaadin/tests/components/link/LinkTargetSize.html index f839f0835a..a28865361f 100644 --- a/src/com/vaadin/tests/components/link/LinkTargetSize.html +++ b/src/com/vaadin/tests/components/link/LinkTargetSize.html @@ -13,7 +13,7 @@ open - /Vaadin6.1/run/com.vaadin.tests.components.link.LinkTargetSize + /run/com.vaadin.tests.components.link.LinkTargetSize @@ -23,7 +23,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentslinkLinkTargetSize::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VLink[0]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentslinkLinkTargetSize::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VLink[0]/domChild[0]/domChild[0] diff --git a/src/com/vaadin/tests/components/orderedlayout/ReplaceComponentNPE.html b/src/com/vaadin/tests/components/orderedlayout/ReplaceComponentNPE.html index 02f81d4b94..7a071030dc 100644 --- a/src/com/vaadin/tests/components/orderedlayout/ReplaceComponentNPE.html +++ b/src/com/vaadin/tests/components/orderedlayout/ReplaceComponentNPE.html @@ -13,7 +13,7 @@ open - /Vaadin6.1/run/com.vaadin.tests.components.orderedlayout.ReplaceComponentNPE + /run/com.vaadin.tests.components.orderedlayout.ReplaceComponentNPE @@ -28,7 +28,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentsorderedlayoutReplaceComponentNPE::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentsorderedlayoutReplaceComponentNPE::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0] diff --git a/src/com/vaadin/tests/components/popupview/PopupViewOffScreen.html b/src/com/vaadin/tests/components/popupview/PopupViewOffScreen.html index c349666aba..99ee864179 100644 --- a/src/com/vaadin/tests/components/popupview/PopupViewOffScreen.html +++ b/src/com/vaadin/tests/components/popupview/PopupViewOffScreen.html @@ -13,7 +13,7 @@ open - /Vaadin6.1/run/com.vaadin.tests.components.popupview.PopupViewOffScreen + /run/com.vaadin.tests.components.popupview.PopupViewOffScreen @@ -28,7 +28,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentspopupviewPopupViewOffScreen::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VGridLayout[0]/AbsolutePanel[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentspopupviewPopupViewOffScreen::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VGridLayout[0]/AbsolutePanel[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0] diff --git a/src/com/vaadin/tests/components/richtextarea/RichTextAreaSize.html b/src/com/vaadin/tests/components/richtextarea/RichTextAreaSize.html index aaac22bc81..7708c88e54 100644 --- a/src/com/vaadin/tests/components/richtextarea/RichTextAreaSize.html +++ b/src/com/vaadin/tests/components/richtextarea/RichTextAreaSize.html @@ -13,7 +13,7 @@ open - /Vaadin6.1/run/com.vaadin.tests.components.richtextarea.RichTextAreaSize + /run/com.vaadin.tests.components.richtextarea.RichTextAreaSize diff --git a/src/com/vaadin/tests/components/splitpanel/SplitPanelSplitterWidth.html b/src/com/vaadin/tests/components/splitpanel/SplitPanelSplitterWidth.html index a7273c1538..876ed75ea8 100644 --- a/src/com/vaadin/tests/components/splitpanel/SplitPanelSplitterWidth.html +++ b/src/com/vaadin/tests/components/splitpanel/SplitPanelSplitterWidth.html @@ -13,7 +13,7 @@ open - /Vaadin6.1/run/com.vaadin.tests.components.splitpanel.SplitPanelSplitterWidth + /run/com.vaadin.tests.components.splitpanel.SplitPanelSplitterWidth @@ -28,7 +28,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentssplitpanelSplitPanelSplitterWidth::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VButton[0]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentssplitpanelSplitPanelSplitterWidth::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VButton[0]/domChild[0]/domChild[0] diff --git a/src/com/vaadin/tests/components/table/ClippedComponentsInTable.html b/src/com/vaadin/tests/components/table/ClippedComponentsInTable.html index f69650a528..4a6ccbbe2d 100644 --- a/src/com/vaadin/tests/components/table/ClippedComponentsInTable.html +++ b/src/com/vaadin/tests/components/table/ClippedComponentsInTable.html @@ -13,7 +13,7 @@ open - /Vaadin6.1/run/com.vaadin.tests.components.table.ClippedComponentsInTable + /run/com.vaadin.tests.components.table.ClippedComponentsInTable diff --git a/src/com/vaadin/tests/components/table/ColumnCollapsingAndColumnExpansion.html b/src/com/vaadin/tests/components/table/ColumnCollapsingAndColumnExpansion.html index 1a6d092005..33509916f7 100644 --- a/src/com/vaadin/tests/components/table/ColumnCollapsingAndColumnExpansion.html +++ b/src/com/vaadin/tests/components/table/ColumnCollapsingAndColumnExpansion.html @@ -13,7 +13,7 @@ open - /Vaadin6.1/run/com.vaadin.tests.components.table.ColumnCollapsingAndColumnExpansion + /run/com.vaadin.tests.components.table.ColumnCollapsingAndColumnExpansion @@ -28,7 +28,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentstableColumnCollapsingAndColumnExpansion::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VScrollTable[0]/domChild[0]/domChild[1] + vaadin=runcomvaadintestscomponentstableColumnCollapsingAndColumnExpansion::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VScrollTable[0]/domChild[0]/domChild[1] diff --git a/src/com/vaadin/tests/components/table/ColumnExpandRatio.html b/src/com/vaadin/tests/components/table/ColumnExpandRatio.html index e741c12bec..6d5422831e 100644 --- a/src/com/vaadin/tests/components/table/ColumnExpandRatio.html +++ b/src/com/vaadin/tests/components/table/ColumnExpandRatio.html @@ -13,7 +13,7 @@ open - /Vaadin6.1/run/com.vaadin.tests.components.table.ColumnExpandRatio + /run/com.vaadin.tests.components.table.ColumnExpandRatio diff --git a/src/com/vaadin/tests/components/table/ColumnExpandWithFixedColumns.html b/src/com/vaadin/tests/components/table/ColumnExpandWithFixedColumns.html index 1b391030ec..eb338c8dde 100644 --- a/src/com/vaadin/tests/components/table/ColumnExpandWithFixedColumns.html +++ b/src/com/vaadin/tests/components/table/ColumnExpandWithFixedColumns.html @@ -13,7 +13,7 @@ open - /Vaadin6.1/run/com.vaadin.tests.components.table.ColumnExpandWithFixedColumns + /run/com.vaadin.tests.components.table.ColumnExpandWithFixedColumns diff --git a/src/com/vaadin/tests/components/table/LabelEmbeddedClickThroughForTable.html b/src/com/vaadin/tests/components/table/LabelEmbeddedClickThroughForTable.html index 6176e263e5..e8dccea4e7 100644 --- a/src/com/vaadin/tests/components/table/LabelEmbeddedClickThroughForTable.html +++ b/src/com/vaadin/tests/components/table/LabelEmbeddedClickThroughForTable.html @@ -13,7 +13,7 @@ open - /Vaadin6.1/run/com.vaadin.tests.components.table.LabelEmbeddedClickThroughForTable + /run/com.vaadin.tests.components.table.LabelEmbeddedClickThroughForTable @@ -23,7 +23,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentstableLabelEmbeddedClickThroughForTable::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VScrollTable[0]/ScrollPanel[0]/VScrollTable$VScrollTableBody[0]/VScrollTable$VScrollTableBody$VScrollTableRow[0]/VLabel[1]/domChild[0] + vaadin=runcomvaadintestscomponentstableLabelEmbeddedClickThroughForTable::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VScrollTable[0]/ScrollPanel[0]/VScrollTable$VScrollTableBody[0]/VScrollTable$VScrollTableBody$VScrollTableRow[0]/VLabel[1]/domChild[0] @@ -38,7 +38,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentstableLabelEmbeddedClickThroughForTable::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VScrollTable[0]/ScrollPanel[0]/VScrollTable$VScrollTableBody[0]/VScrollTable$VScrollTableBody$VScrollTableRow[1]/VLabel[1]/domChild[0] + vaadin=runcomvaadintestscomponentstableLabelEmbeddedClickThroughForTable::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VScrollTable[0]/ScrollPanel[0]/VScrollTable$VScrollTableBody[0]/VScrollTable$VScrollTableBody$VScrollTableRow[1]/VLabel[1]/domChild[0] diff --git a/src/com/vaadin/tests/components/table/MissingScrollbar.html b/src/com/vaadin/tests/components/table/MissingScrollbar.html index cbbdd9e9fc..dfea329e60 100644 --- a/src/com/vaadin/tests/components/table/MissingScrollbar.html +++ b/src/com/vaadin/tests/components/table/MissingScrollbar.html @@ -13,7 +13,7 @@ open - /Vaadin6.1/run/com.vaadin.tests.components.table.MissingScrollbar + /run/com.vaadin.tests.components.table.MissingScrollbar @@ -23,7 +23,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentstableMissingScrollbar::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VHorizontalLayout[0]/ChildComponentContainer[0]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentstableMissingScrollbar::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VHorizontalLayout[0]/ChildComponentContainer[0]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0] @@ -38,7 +38,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentstableMissingScrollbar::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VHorizontalLayout[0]/ChildComponentContainer[0]/VVerticalLayout[0]/ChildComponentContainer[0]/VButton[0]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentstableMissingScrollbar::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VHorizontalLayout[0]/ChildComponentContainer[0]/VVerticalLayout[0]/ChildComponentContainer[0]/VButton[0]/domChild[0]/domChild[0] diff --git a/src/com/vaadin/tests/components/table/PropertyValueChange.html b/src/com/vaadin/tests/components/table/PropertyValueChange.html index 5e4ec51749..41f97ebb61 100644 --- a/src/com/vaadin/tests/components/table/PropertyValueChange.html +++ b/src/com/vaadin/tests/components/table/PropertyValueChange.html @@ -13,7 +13,7 @@ open - /Vaadin6.1/run/com.vaadin.tests.components.table.PropertyValueChange + /run/com.vaadin.tests.components.table.PropertyValueChange @@ -28,7 +28,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentstablePropertyValueChange::PID_Seditortable/ScrollPanel[0]/VScrollTable$VScrollTableBody[0]/VScrollTable$VScrollTableBody$VScrollTableRow[0]/VFilterSelect[0]/domChild[1] + vaadin=runcomvaadintestscomponentstablePropertyValueChange::PID_Seditortable/ScrollPanel[0]/VScrollTable$VScrollTableBody[0]/VScrollTable$VScrollTableBody$VScrollTableRow[0]/VFilterSelect[0]/domChild[1] @@ -48,7 +48,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentstablePropertyValueChange::PID_Seditortable/ScrollPanel[0]/VScrollTable$VScrollTableBody[0]/VScrollTable$VScrollTableBody$VScrollTableRow[0]/VTextField[0] + vaadin=runcomvaadintestscomponentstablePropertyValueChange::PID_Seditortable/ScrollPanel[0]/VScrollTable$VScrollTableBody[0]/VScrollTable$VScrollTableBody$VScrollTableRow[0]/VTextField[0] @@ -58,7 +58,7 @@ type - vaadin=Vaadin61runcomvaadintestscomponentstablePropertyValueChange::PID_Seditortable/ScrollPanel[0]/VScrollTable$VScrollTableBody[0]/VScrollTable$VScrollTableBody$VScrollTableRow[0]/VTextField[0] + vaadin=runcomvaadintestscomponentstablePropertyValueChange::PID_Seditortable/ScrollPanel[0]/VScrollTable$VScrollTableBody[0]/VScrollTable$VScrollTableBody$VScrollTableRow[0]/VTextField[0] 9 @@ -68,7 +68,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentstablePropertyValueChange::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[3]/VButton[0]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentstablePropertyValueChange::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[3]/VButton[0]/domChild[0]/domChild[0] diff --git a/src/com/vaadin/tests/components/table/RowAdditionTest.html b/src/com/vaadin/tests/components/table/RowAdditionTest.html index e731052aa2..4125e32e41 100644 --- a/src/com/vaadin/tests/components/table/RowAdditionTest.html +++ b/src/com/vaadin/tests/components/table/RowAdditionTest.html @@ -13,7 +13,7 @@ open - /Vaadin6.1/run/com.vaadin.tests.components.table.RowAdditionTest + /run/com.vaadin.tests.components.table.RowAdditionTest @@ -23,7 +23,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentstableRowAdditionTest::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VHorizontalLayout[0]/ChildComponentContainer[0]/VButton[0]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentstableRowAdditionTest::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VHorizontalLayout[0]/ChildComponentContainer[0]/VButton[0]/domChild[0]/domChild[0] @@ -38,7 +38,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentstableRowAdditionTest::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VHorizontalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentstableRowAdditionTest::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VHorizontalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0] @@ -48,7 +48,7 @@ scroll - vaadin=Vaadin61runcomvaadintestscomponentstableRowAdditionTest::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VScrollTable[0]/domChild[1] + vaadin=runcomvaadintestscomponentstableRowAdditionTest::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VScrollTable[0]/domChild[1] 300 @@ -58,7 +58,7 @@ scroll - vaadin=Vaadin61runcomvaadintestscomponentstableRowAdditionTest::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VScrollTable[0]/domChild[1] + vaadin=runcomvaadintestscomponentstableRowAdditionTest::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VScrollTable[0]/domChild[1] 600 @@ -68,7 +68,7 @@ scroll - vaadin=Vaadin61runcomvaadintestscomponentstableRowAdditionTest::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VScrollTable[0]/domChild[1] + vaadin=runcomvaadintestscomponentstableRowAdditionTest::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VScrollTable[0]/domChild[1] 900 @@ -83,7 +83,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentstableRowAdditionTest::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VHorizontalLayout[0]/ChildComponentContainer[2]/VButton[0]/domChild[0] + vaadin=runcomvaadintestscomponentstableRowAdditionTest::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VHorizontalLayout[0]/ChildComponentContainer[2]/VButton[0]/domChild[0] @@ -93,7 +93,7 @@ scroll - vaadin=Vaadin61runcomvaadintestscomponentstableRowAdditionTest::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VScrollTable[0]/domChild[1] + vaadin=runcomvaadintestscomponentstableRowAdditionTest::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VScrollTable[0]/domChild[1] 903 @@ -103,7 +103,7 @@ scroll - vaadin=Vaadin61runcomvaadintestscomponentstableRowAdditionTest::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VScrollTable[0]/domChild[1] + vaadin=runcomvaadintestscomponentstableRowAdditionTest::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VScrollTable[0]/domChild[1] 1203 @@ -113,7 +113,7 @@ scroll - vaadin=Vaadin61runcomvaadintestscomponentstableRowAdditionTest::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VScrollTable[0]/domChild[1] + vaadin=runcomvaadintestscomponentstableRowAdditionTest::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VScrollTable[0]/domChild[1] 1503 @@ -123,7 +123,7 @@ scroll - vaadin=Vaadin61runcomvaadintestscomponentstableRowAdditionTest::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VScrollTable[0]/domChild[1] + vaadin=runcomvaadintestscomponentstableRowAdditionTest::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VScrollTable[0]/domChild[1] 1803 @@ -138,7 +138,7 @@ scroll - vaadin=Vaadin61runcomvaadintestscomponentstableRowAdditionTest::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VScrollTable[0]/domChild[1] + vaadin=runcomvaadintestscomponentstableRowAdditionTest::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VScrollTable[0]/domChild[1] 1848 diff --git a/src/com/vaadin/tests/components/table/TableLastRowMissing.html b/src/com/vaadin/tests/components/table/TableLastRowMissing.html index aa4cca15d9..ca8ee6d6a4 100644 --- a/src/com/vaadin/tests/components/table/TableLastRowMissing.html +++ b/src/com/vaadin/tests/components/table/TableLastRowMissing.html @@ -13,7 +13,7 @@ open - /Vaadin6.1/run/com.vaadin.tests.components.table.TableLastRowMissing + /run/com.vaadin.tests.components.table.TableLastRowMissing diff --git a/src/com/vaadin/tests/components/table/TablePageLengthUpdate.html b/src/com/vaadin/tests/components/table/TablePageLengthUpdate.html index 6a45b43ac5..fe5887634f 100644 --- a/src/com/vaadin/tests/components/table/TablePageLengthUpdate.html +++ b/src/com/vaadin/tests/components/table/TablePageLengthUpdate.html @@ -13,7 +13,7 @@ open - /Vaadin6.1/run/com.vaadin.tests.components.table.TablePageLengthUpdate + /run/com.vaadin.tests.components.table.TablePageLengthUpdate @@ -23,7 +23,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentstableTablePageLengthUpdate::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[3]/VTextField[0] + vaadin=runcomvaadintestscomponentstableTablePageLengthUpdate::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[3]/VTextField[0] @@ -33,12 +33,12 @@ type - vaadin=Vaadin61runcomvaadintestscomponentstableTablePageLengthUpdate::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[3]/VTextField[0] + vaadin=runcomvaadintestscomponentstableTablePageLengthUpdate::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[3]/VTextField[0] 200px click - vaadin=Vaadin61runcomvaadintestscomponentstableTablePageLengthUpdate::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[2]/VButton[0]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentstableTablePageLengthUpdate::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[2]/VButton[0]/domChild[0]/domChild[0] @@ -58,7 +58,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentstableTablePageLengthUpdate::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[3]/VTextField[0] + vaadin=runcomvaadintestscomponentstableTablePageLengthUpdate::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[3]/VTextField[0] @@ -68,12 +68,12 @@ type - vaadin=Vaadin61runcomvaadintestscomponentstableTablePageLengthUpdate::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[3]/VTextField[0] + vaadin=runcomvaadintestscomponentstableTablePageLengthUpdate::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[3]/VTextField[0] 250px click - vaadin=Vaadin61runcomvaadintestscomponentstableTablePageLengthUpdate::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[2]/VButton[0]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentstableTablePageLengthUpdate::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[2]/VButton[0]/domChild[0]/domChild[0] @@ -98,12 +98,12 @@ type - vaadin=Vaadin61runcomvaadintestscomponentstableTablePageLengthUpdate::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[3]/VTextField[0] + vaadin=runcomvaadintestscomponentstableTablePageLengthUpdate::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[3]/VTextField[0] 50px click - vaadin=Vaadin61runcomvaadintestscomponentstableTablePageLengthUpdate::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[2]/VButton[0]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentstableTablePageLengthUpdate::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[2]/VButton[0]/domChild[0]/domChild[0] diff --git a/src/com/vaadin/tests/components/table/TableRowHeight.html b/src/com/vaadin/tests/components/table/TableRowHeight.html index c61818c056..a28df6329f 100644 --- a/src/com/vaadin/tests/components/table/TableRowHeight.html +++ b/src/com/vaadin/tests/components/table/TableRowHeight.html @@ -13,7 +13,7 @@ open - /Vaadin6.1/run/com.vaadin.tests.components.table.TableRowHeight + /run/com.vaadin.tests.components.table.TableRowHeight diff --git a/src/com/vaadin/tests/components/table/TableRowHeight2.html b/src/com/vaadin/tests/components/table/TableRowHeight2.html index 68236fd534..bd83c1d9dc 100644 --- a/src/com/vaadin/tests/components/table/TableRowHeight2.html +++ b/src/com/vaadin/tests/components/table/TableRowHeight2.html @@ -13,7 +13,7 @@ open - /Vaadin6.1/run/com.vaadin.tests.components.table.TableRowHeight2 + /run/com.vaadin.tests.components.table.TableRowHeight2 @@ -28,7 +28,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentstableTableRowHeight2::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VHorizontalLayout[0]/ChildComponentContainer[0]/VScrollTable[0]/ScrollPanel[0]/VScrollTable$VScrollTableBody[0]/VScrollTable$VScrollTableBody$VScrollTableRow[0]/VButton[1]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentstableTableRowHeight2::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VHorizontalLayout[0]/ChildComponentContainer[0]/VScrollTable[0]/ScrollPanel[0]/VScrollTable$VScrollTableBody[0]/VScrollTable$VScrollTableBody$VScrollTableRow[0]/VButton[1]/domChild[0]/domChild[0] @@ -38,7 +38,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentstableTableRowHeight2::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VHorizontalLayout[0]/ChildComponentContainer[0]/VScrollTable[0]/ScrollPanel[0]/VScrollTable$VScrollTableBody[0]/VScrollTable$VScrollTableBody$VScrollTableRow[1]/VButton[1]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentstableTableRowHeight2::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VHorizontalLayout[0]/ChildComponentContainer[0]/VScrollTable[0]/ScrollPanel[0]/VScrollTable$VScrollTableBody[0]/VScrollTable$VScrollTableBody$VScrollTableRow[1]/VButton[1]/domChild[0]/domChild[0] diff --git a/src/com/vaadin/tests/components/table/TableVisibleColumnsUpdate.html b/src/com/vaadin/tests/components/table/TableVisibleColumnsUpdate.html index 1e9316f174..05325cb9e6 100644 --- a/src/com/vaadin/tests/components/table/TableVisibleColumnsUpdate.html +++ b/src/com/vaadin/tests/components/table/TableVisibleColumnsUpdate.html @@ -13,7 +13,7 @@ open - /Vaadin6.1/run/com.vaadin.tests.components.table.TableVisibleColumnsUpdate + /run/com.vaadin.tests.components.table.TableVisibleColumnsUpdate @@ -28,7 +28,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentstableTableVisibleColumnsUpdate::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentstableTableVisibleColumnsUpdate::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0] @@ -43,7 +43,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentstableTableVisibleColumnsUpdate::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0] + vaadin=runcomvaadintestscomponentstableTableVisibleColumnsUpdate::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0] @@ -58,7 +58,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentstableTableVisibleColumnsUpdate::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0] + vaadin=runcomvaadintestscomponentstableTableVisibleColumnsUpdate::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0] diff --git a/src/com/vaadin/tests/components/table/TextFieldRelativeWidth.html b/src/com/vaadin/tests/components/table/TextFieldRelativeWidth.html index 9cc182e1d7..5b5ea40168 100644 --- a/src/com/vaadin/tests/components/table/TextFieldRelativeWidth.html +++ b/src/com/vaadin/tests/components/table/TextFieldRelativeWidth.html @@ -13,7 +13,7 @@ open - /Vaadin6.1/run/com.vaadin.tests.components.table.TextFieldRelativeWidth + /run/com.vaadin.tests.components.table.TextFieldRelativeWidth @@ -28,7 +28,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentstableTextFieldRelativeWidth::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VScrollTable[0]/ScrollPanel[0]/VScrollTable$VScrollTableBody[0]/VScrollTable$VScrollTableBody$VScrollTableRow[2]/VButton[0]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentstableTextFieldRelativeWidth::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VScrollTable[0]/ScrollPanel[0]/VScrollTable$VScrollTableBody[0]/VScrollTable$VScrollTableBody$VScrollTableRow[2]/VButton[0]/domChild[0]/domChild[0] @@ -38,7 +38,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentstableTextFieldRelativeWidth::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VScrollTable[0]/ScrollPanel[0]/VScrollTable$VScrollTableBody[0]/VScrollTable$VScrollTableBody$VScrollTableRow[4]/VButton[0]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentstableTextFieldRelativeWidth::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VScrollTable[0]/ScrollPanel[0]/VScrollTable$VScrollTableBody[0]/VScrollTable$VScrollTableBody$VScrollTableRow[4]/VButton[0]/domChild[0]/domChild[0] diff --git a/src/com/vaadin/tests/components/tabsheet/AddAndRemoveTabs.html b/src/com/vaadin/tests/components/tabsheet/AddAndRemoveTabs.html index 3f4e0e8f8f..dd07d8cef6 100644 --- a/src/com/vaadin/tests/components/tabsheet/AddAndRemoveTabs.html +++ b/src/com/vaadin/tests/components/tabsheet/AddAndRemoveTabs.html @@ -13,7 +13,7 @@ open - /Vaadin6.1/run/com.vaadin.tests.components.tabsheet.AddAndRemoveTabs + /run/com.vaadin.tests.components.tabsheet.AddAndRemoveTabs @@ -23,7 +23,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentstabsheetAddAndRemoveTabs::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/VTabsheetPanel[0]/VHorizontalLayout[0]/ChildComponentContainer[0]/VButton[0]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentstabsheetAddAndRemoveTabs::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/VTabsheetPanel[0]/VHorizontalLayout[0]/ChildComponentContainer[0]/VButton[0]/domChild[0]/domChild[0] @@ -38,7 +38,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentstabsheetAddAndRemoveTabs::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentstabsheetAddAndRemoveTabs::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0] @@ -48,7 +48,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentstabsheetAddAndRemoveTabs::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentstabsheetAddAndRemoveTabs::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0] @@ -58,7 +58,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentstabsheetAddAndRemoveTabs::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentstabsheetAddAndRemoveTabs::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0] @@ -73,7 +73,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentstabsheetAddAndRemoveTabs::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[1]/domChild[0]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentstabsheetAddAndRemoveTabs::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[1]/domChild[0]/domChild[0]/domChild[0] @@ -83,7 +83,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentstabsheetAddAndRemoveTabs::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/VTabsheetPanel[0]/VHorizontalLayout[1]/ChildComponentContainer[0]/VButton[0]/domChild[0] + vaadin=runcomvaadintestscomponentstabsheetAddAndRemoveTabs::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/VTabsheetPanel[0]/VHorizontalLayout[1]/ChildComponentContainer[0]/VButton[0]/domChild[0] @@ -98,7 +98,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentstabsheetAddAndRemoveTabs::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0] + vaadin=runcomvaadintestscomponentstabsheetAddAndRemoveTabs::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0] diff --git a/src/com/vaadin/tests/components/tabsheet/PreventTabChange.html b/src/com/vaadin/tests/components/tabsheet/PreventTabChange.html index 40ab930a21..c4f5998f47 100644 --- a/src/com/vaadin/tests/components/tabsheet/PreventTabChange.html +++ b/src/com/vaadin/tests/components/tabsheet/PreventTabChange.html @@ -13,7 +13,7 @@ open - /Vaadin6.1/run/com.vaadin.tests.components.tabsheet.PreventTabChange + /run/com.vaadin.tests.components.tabsheet.PreventTabChange @@ -23,7 +23,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentstabsheetPreventTabChange::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[1]/domChild[0]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentstabsheetPreventTabChange::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[1]/domChild[0]/domChild[0]/domChild[0] @@ -33,7 +33,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentstabsheetPreventTabChange::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[2]/domChild[0]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentstabsheetPreventTabChange::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[2]/domChild[0]/domChild[0]/domChild[0] @@ -48,7 +48,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentstabsheetPreventTabChange::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentstabsheetPreventTabChange::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0] @@ -58,7 +58,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentstabsheetPreventTabChange::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[2]/domChild[0]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentstabsheetPreventTabChange::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[2]/domChild[0]/domChild[0]/domChild[0] diff --git a/src/com/vaadin/tests/components/tabsheet/RemoveTabsTabsheet.html b/src/com/vaadin/tests/components/tabsheet/RemoveTabsTabsheet.html index ef75f61ae4..07db540395 100644 --- a/src/com/vaadin/tests/components/tabsheet/RemoveTabsTabsheet.html +++ b/src/com/vaadin/tests/components/tabsheet/RemoveTabsTabsheet.html @@ -13,7 +13,7 @@ open - /Vaadin6.1/run/com.vaadin.tests.components.tabsheet.RemoveTabs + /run/com.vaadin.tests.components.tabsheet.RemoveTabs @@ -28,7 +28,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentstabsheetRemoveTabs::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentstabsheetRemoveTabs::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0] @@ -43,7 +43,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentstabsheetRemoveTabs::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[2]/domChild[0]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentstabsheetRemoveTabs::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[2]/domChild[0]/domChild[0]/domChild[0] @@ -53,7 +53,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentstabsheetRemoveTabs::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[3]/VButton[0]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentstabsheetRemoveTabs::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[3]/VButton[0]/domChild[0]/domChild[0] @@ -68,7 +68,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentstabsheetRemoveTabs::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[4]/VButton[0]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentstabsheetRemoveTabs::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[4]/VButton[0]/domChild[0]/domChild[0] @@ -83,7 +83,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentstabsheetRemoveTabs::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[2]/VButton[0]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentstabsheetRemoveTabs::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[2]/VButton[0]/domChild[0]/domChild[0] @@ -93,7 +93,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentstabsheetRemoveTabs::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[1]/domChild[0]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentstabsheetRemoveTabs::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[1]/domChild[0]/domChild[0]/domChild[0] diff --git a/src/com/vaadin/tests/components/tabsheet/TabSheetDisabling.html b/src/com/vaadin/tests/components/tabsheet/TabSheetDisabling.html index b55e71eab4..bc03f7687b 100644 --- a/src/com/vaadin/tests/components/tabsheet/TabSheetDisabling.html +++ b/src/com/vaadin/tests/components/tabsheet/TabSheetDisabling.html @@ -13,7 +13,7 @@ open - /Vaadin6.1/run/com.vaadin.tests.components.tabsheet.TabSheetDisabling + /run/com.vaadin.tests.components.tabsheet.TabSheetDisabling @@ -23,7 +23,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentstabsheetTabSheetDisabling::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/VTabsheetPanel[0]/VButton[0]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentstabsheetTabSheetDisabling::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/VTabsheetPanel[0]/VButton[0]/domChild[0]/domChild[0] @@ -33,7 +33,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentstabsheetTabSheetDisabling::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[5]/domChild[0]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentstabsheetTabSheetDisabling::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[5]/domChild[0]/domChild[0]/domChild[0] @@ -48,7 +48,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentstabsheetTabSheetDisabling::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentstabsheetTabSheetDisabling::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0] @@ -58,7 +58,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentstabsheetTabSheetDisabling::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentstabsheetTabSheetDisabling::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0] @@ -73,7 +73,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentstabsheetTabSheetDisabling::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/VTabsheetPanel[0]/VButton[2]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentstabsheetTabSheetDisabling::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/VTabsheetPanel[0]/VButton[2]/domChild[0]/domChild[0] @@ -83,7 +83,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentstabsheetTabSheetDisabling::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[6]/domChild[0]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentstabsheetTabSheetDisabling::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[6]/domChild[0]/domChild[0]/domChild[0] @@ -98,7 +98,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentstabsheetTabSheetDisabling::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentstabsheetTabSheetDisabling::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0] @@ -108,7 +108,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentstabsheetTabSheetDisabling::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentstabsheetTabSheetDisabling::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0] @@ -118,7 +118,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentstabsheetTabSheetDisabling::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/VTabsheetPanel[0]/VButton[3]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentstabsheetTabSheetDisabling::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/VTabsheetPanel[0]/VButton[3]/domChild[0]/domChild[0] @@ -133,7 +133,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentstabsheetTabSheetDisabling::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/VTabsheetPanel[0]/VButton[1]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentstabsheetTabSheetDisabling::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/VTabsheetPanel[0]/VButton[1]/domChild[0]/domChild[0] @@ -143,7 +143,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentstabsheetTabSheetDisabling::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/VTabsheetPanel[0]/VButton[2]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentstabsheetTabSheetDisabling::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/VTabsheetPanel[0]/VButton[2]/domChild[0]/domChild[0] diff --git a/src/com/vaadin/tests/components/tabsheet/TabSheetWithoutTabCaption.html b/src/com/vaadin/tests/components/tabsheet/TabSheetWithoutTabCaption.html index 309eab2731..36e85c1b37 100644 --- a/src/com/vaadin/tests/components/tabsheet/TabSheetWithoutTabCaption.html +++ b/src/com/vaadin/tests/components/tabsheet/TabSheetWithoutTabCaption.html @@ -13,7 +13,7 @@ open - /Vaadin6.1/run/com.vaadin.tests.components.tabsheet.TabSheetWithoutTabCaption + /run/com.vaadin.tests.components.tabsheet.TabSheetWithoutTabCaption diff --git a/src/com/vaadin/tests/components/tabsheet/TabsheetTooltip.html b/src/com/vaadin/tests/components/tabsheet/TabsheetTooltip.html index 91b9a4898c..08b7869587 100644 --- a/src/com/vaadin/tests/components/tabsheet/TabsheetTooltip.html +++ b/src/com/vaadin/tests/components/tabsheet/TabsheetTooltip.html @@ -13,7 +13,7 @@ open - /Vaadin6.1/run/com.vaadin.tests.components.tabsheet.TabsheetTooltip + /run/com.vaadin.tests.components.tabsheet.TabsheetTooltip @@ -28,7 +28,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentstabsheetTabsheetTooltip::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[1]/domChild[0]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentstabsheetTabsheetTooltip::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[1]/domChild[0]/domChild[0]/domChild[0] @@ -43,7 +43,7 @@ mouseOver - vaadin=Vaadin61runcomvaadintestscomponentstabsheetTabsheetTooltip::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentstabsheetTabsheetTooltip::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0] @@ -58,7 +58,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentstabsheetTabsheetTooltip::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[1]/domChild[0]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentstabsheetTabsheetTooltip::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[1]/domChild[0]/domChild[0]/domChild[0] @@ -68,7 +68,7 @@ mouseOver - vaadin=Vaadin61runcomvaadintestscomponentstabsheetTabsheetTooltip::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[1]/domChild[0]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentstabsheetTabsheetTooltip::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[1]/domChild[0]/domChild[0]/domChild[0] diff --git a/src/com/vaadin/tests/components/tabsheet/VerticalScrollbarPosition.html b/src/com/vaadin/tests/components/tabsheet/VerticalScrollbarPosition.html index 207c6da909..3da03edb6a 100644 --- a/src/com/vaadin/tests/components/tabsheet/VerticalScrollbarPosition.html +++ b/src/com/vaadin/tests/components/tabsheet/VerticalScrollbarPosition.html @@ -13,7 +13,7 @@ open - /Vaadin6.1/run/com.vaadin.tests.components.tabsheet.VerticalScrollbarPosition + /run/com.vaadin.tests.components.tabsheet.VerticalScrollbarPosition @@ -28,7 +28,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentstabsheetVerticalScrollbarPosition::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/domChild[0]/domChild[1]/domChild[1] + vaadin=runcomvaadintestscomponentstabsheetVerticalScrollbarPosition::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/domChild[0]/domChild[1]/domChild[1] @@ -43,7 +43,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentstabsheetVerticalScrollbarPosition::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[1]/domChild[0]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentstabsheetVerticalScrollbarPosition::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[1]/domChild[0]/domChild[0]/domChild[0] @@ -58,7 +58,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentstabsheetVerticalScrollbarPosition::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentstabsheetVerticalScrollbarPosition::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[0]/VTabsheet[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0]/domChild[0] diff --git a/src/com/vaadin/tests/components/tree/TreeNodeCaptionWrapping.html b/src/com/vaadin/tests/components/tree/TreeNodeCaptionWrapping.html index 5691f71a5a..2c2baca773 100644 --- a/src/com/vaadin/tests/components/tree/TreeNodeCaptionWrapping.html +++ b/src/com/vaadin/tests/components/tree/TreeNodeCaptionWrapping.html @@ -13,7 +13,7 @@ open - /Vaadin6.1/run/com.vaadin.tests.components.tree.TreeNodeCaptionWrapping + /run/com.vaadin.tests.components.tree.TreeNodeCaptionWrapping diff --git a/src/com/vaadin/tests/components/window/CenteredWindowWithUndefinedSize.html b/src/com/vaadin/tests/components/window/CenteredWindowWithUndefinedSize.html index 8cf62a063a..2e15d8d645 100644 --- a/src/com/vaadin/tests/components/window/CenteredWindowWithUndefinedSize.html +++ b/src/com/vaadin/tests/components/window/CenteredWindowWithUndefinedSize.html @@ -13,7 +13,7 @@ open - /Vaadin6.1/run/com.vaadin.tests.components.window.CenteredWindowWithUndefinedSize + /run/com.vaadin.tests.components.window.CenteredWindowWithUndefinedSize diff --git a/src/com/vaadin/tests/components/window/EmbeddedInSubWindow.html b/src/com/vaadin/tests/components/window/EmbeddedInSubWindow.html index e6480969d5..d74e09dd6a 100644 --- a/src/com/vaadin/tests/components/window/EmbeddedInSubWindow.html +++ b/src/com/vaadin/tests/components/window/EmbeddedInSubWindow.html @@ -13,7 +13,7 @@ open - /Vaadin6.1/run/com.vaadin.tests.components.window.EmbeddedInSubWindow + /run/com.vaadin.tests.components.window.EmbeddedInSubWindow diff --git a/src/com/vaadin/tests/components/window/SubwindowInvalidLayout.html b/src/com/vaadin/tests/components/window/SubwindowInvalidLayout.html index 307a9ca712..9d54eafd02 100644 --- a/src/com/vaadin/tests/components/window/SubwindowInvalidLayout.html +++ b/src/com/vaadin/tests/components/window/SubwindowInvalidLayout.html @@ -13,7 +13,7 @@ open - /Vaadin6.1/run/com.vaadin.tests.components.window.SubwindowInvalidLayout + /run/com.vaadin.tests.components.window.SubwindowInvalidLayout diff --git a/src/com/vaadin/tests/components/window/TestTooSmallSubwindowSize.html b/src/com/vaadin/tests/components/window/TestTooSmallSubwindowSize.html index 3f0e95fa13..f926696d63 100644 --- a/src/com/vaadin/tests/components/window/TestTooSmallSubwindowSize.html +++ b/src/com/vaadin/tests/components/window/TestTooSmallSubwindowSize.html @@ -13,7 +13,7 @@ open - /Vaadin6.1/run/com.vaadin.tests.components.window.TestTooSmallSubwindowSize + /run/com.vaadin.tests.components.window.TestTooSmallSubwindowSize diff --git a/src/com/vaadin/tests/components/window/UndefinedWidthSubWindow.html b/src/com/vaadin/tests/components/window/UndefinedWidthSubWindow.html index fff444fe21..51aabc7e8f 100644 --- a/src/com/vaadin/tests/components/window/UndefinedWidthSubWindow.html +++ b/src/com/vaadin/tests/components/window/UndefinedWidthSubWindow.html @@ -13,7 +13,7 @@ open - /Vaadin6.1/run/com.vaadin.tests.components.window.UndefinedWidthSubWindow + /run/com.vaadin.tests.components.window.UndefinedWidthSubWindow diff --git a/src/com/vaadin/tests/components/window/WindowShouldRemoveActionHandler.html b/src/com/vaadin/tests/components/window/WindowShouldRemoveActionHandler.html index 6511221bc8..4923bff58a 100644 --- a/src/com/vaadin/tests/components/window/WindowShouldRemoveActionHandler.html +++ b/src/com/vaadin/tests/components/window/WindowShouldRemoveActionHandler.html @@ -13,7 +13,7 @@ open - /Vaadin6.1/run/com.vaadin.tests.components.window.WindowShouldRemoveActionHandler + /run/com.vaadin.tests.components.window.WindowShouldRemoveActionHandler @@ -23,7 +23,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentswindowWindowShouldRemoveActionHandler::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentswindowWindowShouldRemoveActionHandler::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0] @@ -33,7 +33,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentswindowWindowShouldRemoveActionHandler::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[2]/VButton[0]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentswindowWindowShouldRemoveActionHandler::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[2]/VButton[0]/domChild[0]/domChild[0] @@ -48,7 +48,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentswindowWindowShouldRemoveActionHandler::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentswindowWindowShouldRemoveActionHandler::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0] @@ -63,7 +63,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentswindowWindowShouldRemoveActionHandler::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[3]/VButton[0]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentswindowWindowShouldRemoveActionHandler::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[3]/VButton[0]/domChild[0]/domChild[0] @@ -73,7 +73,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentswindowWindowShouldRemoveActionHandler::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[3]/VButton[0]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentswindowWindowShouldRemoveActionHandler::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[3]/VButton[0]/domChild[0]/domChild[0] @@ -88,7 +88,7 @@ click - vaadin=Vaadin61runcomvaadintestscomponentswindowWindowShouldRemoveActionHandler::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0] + vaadin=runcomvaadintestscomponentswindowWindowShouldRemoveActionHandler::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0] diff --git a/tests/test.xml b/tests/test.xml index 226d965bba..7ac2aca772 100644 --- a/tests/test.xml +++ b/tests/test.xml @@ -90,8 +90,11 @@ + + + - + -- cgit v1.2.3 From ade91f47d8564940ac6001873a99415d0830a53b Mon Sep 17 00:00:00 2001 From: Artur Signell Date: Tue, 15 Sep 2009 07:57:37 +0000 Subject: Test case and fix for #3343 - IE6 doesn't display cursor when tabbing into a TextField with an input prompt svn changeset:8787/svn branch:6.1 --- .../vaadin/terminal/gwt/client/ui/VTextField.java | 8 +++++-- .../tests/components/textfield/IE6Cursor.java | 27 ++++++++++++++++++++++ 2 files changed, 33 insertions(+), 2 deletions(-) create mode 100644 src/com/vaadin/tests/components/textfield/IE6Cursor.java (limited to 'src/com') diff --git a/src/com/vaadin/terminal/gwt/client/ui/VTextField.java b/src/com/vaadin/terminal/gwt/client/ui/VTextField.java index cd3d9f347c..4403aede35 100644 --- a/src/com/vaadin/terminal/gwt/client/ui/VTextField.java +++ b/src/com/vaadin/terminal/gwt/client/ui/VTextField.java @@ -23,9 +23,9 @@ import com.vaadin.terminal.gwt.client.VTooltip; /** * This class represents a basic text input field with one row. - * + * * @author IT Mill Ltd. - * + * */ public class VTextField extends TextBoxBase implements Paintable, Field, ChangeHandler, FocusHandler, BlurHandler { @@ -167,6 +167,10 @@ public class VTextField extends TextBoxBase implements Paintable, Field, if (prompting) { setText(""); removeStyleDependentName(CLASSNAME_PROMPT); + if (BrowserInfo.get().isIE6()) { + // IE6 does not show the cursor when tabbing into the field + setCursorPos(0); + } } focusedTextField = this; } diff --git a/src/com/vaadin/tests/components/textfield/IE6Cursor.java b/src/com/vaadin/tests/components/textfield/IE6Cursor.java new file mode 100644 index 0000000000..aee56dd7ee --- /dev/null +++ b/src/com/vaadin/tests/components/textfield/IE6Cursor.java @@ -0,0 +1,27 @@ +package com.vaadin.tests.components.textfield; +import com.vaadin.tests.components.TestBase; +import com.vaadin.ui.TextField; + +public class IE6Cursor extends TestBase { + + @Override + protected void setup() { + TextField tf1 = new TextField("First"); + TextField tf2 = new TextField("Second"); + tf2.setInputPrompt("prompt"); + + addComponent(tf1); + addComponent(tf2); + } + + @Override + protected String getDescription() { + return "Tabbing from the first field to the second should clear the second textfield and show the normal, blinking cursor in the field"; + } + + @Override + protected Integer getTicketNumber() { + return 3343; + } + +} -- cgit v1.2.3 From 513861844cf78f0ad838c05f3363cf5aaeb8e432 Mon Sep 17 00:00:00 2001 From: Joonas Lehtinen Date: Tue, 15 Sep 2009 13:49:19 +0000 Subject: JavaDoc update to clear out documentation issue discussed in http://vaadin.com/forum/-/message_boards/message/67998 svn changeset:8806/svn branch:6.1 --- src/com/vaadin/Application.java | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'src/com') diff --git a/src/com/vaadin/Application.java b/src/com/vaadin/Application.java index c87f50c2e7..ca86467e04 100644 --- a/src/com/vaadin/Application.java +++ b/src/com/vaadin/Application.java @@ -1328,10 +1328,13 @@ public abstract class Application implements URIHandler, * Contains the system messages used to notify the user about various * critical situations that can occur. *

- * Customize by overriding the static Application.getSystemMessages() and - * returning CustomizedSystemMessages. Note that getSystemMessages() is - * static - changing the system messages will by default change the message - * for all users of the application. + * Vaadin gets the SystemMessages from your application by calling a static + * getSystemMessages() method. By default the + * Application.getSystemMessages() is used. Your can customize this by + * defining the a static MyApplication.getSystemMessages() and returning + * CustomizedSystemMessages. Note that getSystemMessages() is static - + * changing the system messages will by default change the message for all + * users of the application. *

*

* The default behavior is to show a notification, and restart the -- cgit v1.2.3 From 2d879dafea86fa45ce5c0d38d38bef20a4273df2 Mon Sep 17 00:00:00 2001 From: Matti Tahvonen Date: Wed, 16 Sep 2009 13:09:22 +0000 Subject: added a test case svn changeset:8816/svn branch:6.1 --- .../components/form/FormNotGettingSmaller.java | 51 ++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 src/com/vaadin/tests/components/form/FormNotGettingSmaller.java (limited to 'src/com') diff --git a/src/com/vaadin/tests/components/form/FormNotGettingSmaller.java b/src/com/vaadin/tests/components/form/FormNotGettingSmaller.java new file mode 100644 index 0000000000..5cf048a2f3 --- /dev/null +++ b/src/com/vaadin/tests/components/form/FormNotGettingSmaller.java @@ -0,0 +1,51 @@ +package com.vaadin.tests.components.form; + +import com.vaadin.data.Item; +import com.vaadin.data.util.ObjectProperty; +import com.vaadin.data.util.PropertysetItem; +import com.vaadin.tests.components.TestBase; +import com.vaadin.ui.Button; +import com.vaadin.ui.Form; +import com.vaadin.ui.HorizontalLayout; +import com.vaadin.ui.Label; + +public class FormNotGettingSmaller extends TestBase { + + @Override + protected void setup() { + Item item = new PropertysetItem(); + item.addItemProperty("name", new ObjectProperty("Charles Anthony")); + item.addItemProperty("city", new ObjectProperty("London")); + item.addItemProperty("isTallPerson", new ObjectProperty(Boolean.FALSE)); + + Label spacer = new Label(); + HorizontalLayout buttons = new HorizontalLayout(); + buttons.setSpacing(true); + buttons.setWidth("100%"); + buttons.addComponent(spacer); + buttons.addComponent(new Button("OK")); + buttons.addComponent(new Button("Cancel")); + buttons.setExpandRatio(spacer, 1f); + + Form form = new Form(); + form + .setDescription("Ooh. Just a demonstration of things, really. Some long lorem ipsum dolor sit amet.Some very long lorem ipsum dolor sit amet.Some very long lorem ipsum dolor sit amet.Some very long lorem ipsum dolor sit amet."); + + form.setItemDataSource(item); + form.setFooter(buttons); + + getLayout().addComponent(form); + } + + @Override + protected String getDescription() { + return "When resizing window buttons should stay on " + + "right edge of the screent. Form should also get narrower."; + } + + @Override + protected Integer getTicketNumber() { + return null; + } + +} -- cgit v1.2.3 From aee3173aad9cc074c37b8ab992f9d38f9d4227b0 Mon Sep 17 00:00:00 2001 From: Matti Tahvonen Date: Wed, 16 Sep 2009 13:13:29 +0000 Subject: fixes #3365, form with footer can now be resized narrower svn changeset:8817/svn branch:6.1 --- src/com/vaadin/terminal/gwt/client/ui/VForm.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/com') diff --git a/src/com/vaadin/terminal/gwt/client/ui/VForm.java b/src/com/vaadin/terminal/gwt/client/ui/VForm.java index 290ce2f371..97fbf9b72a 100644 --- a/src/com/vaadin/terminal/gwt/client/ui/VForm.java +++ b/src/com/vaadin/terminal/gwt/client/ui/VForm.java @@ -205,7 +205,8 @@ public class VForm extends ComplexPanel implements Container { return new RenderSpace(renderInformation.getContentAreaSize() .getWidth(), hPixels); } else if (child == footer) { - return new RenderSpace(footerContainer.getOffsetWidth(), 0); + return new RenderSpace(renderInformation.getContentAreaSize() + .getWidth(), 0); } else { ApplicationConnection.getConsole().error( "Invalid child requested RenderSpace information"); -- cgit v1.2.3 From d4f8d0df43eafb420cfebe8241d24e7af875ad79 Mon Sep 17 00:00:00 2001 From: Matti Tahvonen Date: Wed, 16 Sep 2009 13:48:43 +0000 Subject: added ticket number svn changeset:8818/svn branch:6.1 --- src/com/vaadin/tests/components/form/FormNotGettingSmaller.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/com') diff --git a/src/com/vaadin/tests/components/form/FormNotGettingSmaller.java b/src/com/vaadin/tests/components/form/FormNotGettingSmaller.java index 5cf048a2f3..1cf21126a0 100644 --- a/src/com/vaadin/tests/components/form/FormNotGettingSmaller.java +++ b/src/com/vaadin/tests/components/form/FormNotGettingSmaller.java @@ -45,7 +45,7 @@ public class FormNotGettingSmaller extends TestBase { @Override protected Integer getTicketNumber() { - return null; + return 3365; } } -- cgit v1.2.3 From 34e69863d91c9468e696565c7b406623163e6925 Mon Sep 17 00:00:00 2001 From: Matti Tahvonen Date: Wed, 16 Sep 2009 13:54:05 +0000 Subject: added test case svn changeset:8819/svn branch:6.1 --- .../tests/components/window/SubWindowOrder.java | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 src/com/vaadin/tests/components/window/SubWindowOrder.java (limited to 'src/com') diff --git a/src/com/vaadin/tests/components/window/SubWindowOrder.java b/src/com/vaadin/tests/components/window/SubWindowOrder.java new file mode 100644 index 0000000000..ca0d4e662e --- /dev/null +++ b/src/com/vaadin/tests/components/window/SubWindowOrder.java @@ -0,0 +1,28 @@ +package com.vaadin.tests.components.window; + +import com.vaadin.tests.components.TestBase; +import com.vaadin.ui.HorizontalLayout; +import com.vaadin.ui.Window; + +public class SubWindowOrder extends TestBase { + + @Override + protected void setup() { + Window mainWindow = getMainWindow(); + for (int i = 1; i <= 10; i++) { + Window dialog = new Window("Dialog " + i, new HorizontalLayout()); + mainWindow.addWindow(dialog); + } + } + + @Override + protected String getDescription() { + return "Subwindows should be rendered in the same order as they are added."; + } + + @Override + protected Integer getTicketNumber() { + return 3363; + } + +} -- cgit v1.2.3 From fdd1d015f5891bab44252661631f1ed77cc30c3a Mon Sep 17 00:00:00 2001 From: Matti Tahvonen Date: Wed, 16 Sep 2009 13:55:22 +0000 Subject: fixes #3363. Subwindows order now forced to be the same in which they are added + some generics to Window svn changeset:8820/svn branch:6.1 --- src/com/vaadin/ui/Window.java | 34 ++++++++++++++++++---------------- 1 file changed, 18 insertions(+), 16 deletions(-) (limited to 'src/com') diff --git a/src/com/vaadin/ui/Window.java b/src/com/vaadin/ui/Window.java index c35675b08f..663aabbd79 100644 --- a/src/com/vaadin/ui/Window.java +++ b/src/com/vaadin/ui/Window.java @@ -9,8 +9,8 @@ import java.lang.reflect.Method; import java.net.MalformedURLException; import java.net.URL; import java.util.Collections; -import java.util.HashSet; import java.util.Iterator; +import java.util.LinkedHashSet; import java.util.LinkedList; import java.util.Map; import java.util.Set; @@ -64,15 +64,15 @@ public class Window extends Panel implements URIHandler, ParameterHandler { /** * List of URI handlers for this window. */ - private LinkedList uriHandlerList = null; + private LinkedList uriHandlerList = null; /** * List of parameter handlers for this window. */ - private LinkedList parameterHandlerList = null; + private LinkedList parameterHandlerList = null; /** Set of subwindows */ - private final HashSet subwindows = new HashSet(); + private final LinkedHashSet subwindows = new LinkedHashSet(); /** * Explicitly specified theme of this window. If null, application theme is @@ -83,7 +83,7 @@ public class Window extends Panel implements URIHandler, ParameterHandler { /** * Resources to be opened automatically on next repaint. */ - private final LinkedList openList = new LinkedList(); + private final LinkedList openList = new LinkedList(); /** * The name of the window. @@ -107,7 +107,7 @@ public class Window extends Panel implements URIHandler, ParameterHandler { */ private int positionX = -1; - private LinkedList notifications; + private LinkedList notifications; private boolean modal = false; @@ -282,7 +282,7 @@ public class Window extends Panel implements URIHandler, ParameterHandler { mainWindow.addURIHandler(handler); } else { if (uriHandlerList == null) { - uriHandlerList = new LinkedList(); + uriHandlerList = new LinkedList(); } synchronized (uriHandlerList) { if (!uriHandlerList.contains(handler)) { @@ -368,7 +368,7 @@ public class Window extends Panel implements URIHandler, ParameterHandler { mainWindow.addParameterHandler(handler); } else { if (parameterHandlerList == null) { - parameterHandlerList = new LinkedList(); + parameterHandlerList = new LinkedList(); } synchronized (parameterHandlerList) { if (!parameterHandlerList.contains(handler)) { @@ -517,8 +517,9 @@ public class Window extends Panel implements URIHandler, ParameterHandler { // Open requested resource synchronized (openList) { if (!openList.isEmpty()) { - for (final Iterator i = openList.iterator(); i.hasNext();) { - ((OpenResource) i.next()).paintContent(target); + for (final Iterator i = openList.iterator(); i + .hasNext();) { + (i.next()).paintContent(target); } openList.clear(); } @@ -535,16 +536,17 @@ public class Window extends Panel implements URIHandler, ParameterHandler { target.addVariable(this, "close", false); // Paint subwindows - for (final Iterator i = subwindows.iterator(); i.hasNext();) { - final Window w = (Window) i.next(); + for (final Iterator i = subwindows.iterator(); i.hasNext();) { + final Window w = i.next(); w.paint(target); } // Paint notifications if (notifications != null) { target.startTag("notifications"); - for (final Iterator it = notifications.iterator(); it.hasNext();) { - final Notification n = (Notification) it.next(); + for (final Iterator it = notifications.iterator(); it + .hasNext();) { + final Notification n = it.next(); target.startTag("notification"); if (n.getCaption() != null) { target.addAttribute("caption", n.getCaption()); @@ -1184,7 +1186,7 @@ public class Window extends Panel implements URIHandler, ParameterHandler { * * @return Set of child windows. */ - public Set getChildWindows() { + public Set getChildWindows() { return Collections.unmodifiableSet(subwindows); } @@ -1323,7 +1325,7 @@ public class Window extends Panel implements URIHandler, ParameterHandler { private void addNotification(Notification notification) { if (notifications == null) { - notifications = new LinkedList(); + notifications = new LinkedList(); } notifications.add(notification); requestRepaint(); -- cgit v1.2.3 From cec0d92d4f2e66bfccd5a7881bf0189a4e54cad0 Mon Sep 17 00:00:00 2001 From: Jouni Koivuviita Date: Wed, 16 Sep 2009 19:09:38 +0000 Subject: Forgot to commit, part of fix for #3352. Also, trying to fix #3351, but this doesn't completely fix the issue. svn changeset:8822/svn branch:6.1 --- .../vaadin/demo/sampler/SamplerApplication.java | 41 ++++++++++++++-------- 1 file changed, 27 insertions(+), 14 deletions(-) (limited to 'src/com') diff --git a/src/com/vaadin/demo/sampler/SamplerApplication.java b/src/com/vaadin/demo/sampler/SamplerApplication.java index d3a85287fc..7122acf506 100644 --- a/src/com/vaadin/demo/sampler/SamplerApplication.java +++ b/src/com/vaadin/demo/sampler/SamplerApplication.java @@ -56,8 +56,6 @@ public class SamplerApplication extends Application { private static final String[] THEMES = { "reindeer", "runo" }; private static final String SAMPLER_THEME_NAME = "sampler"; - private static String currentTheme = SAMPLER_THEME_NAME + "-" + THEMES[0]; - // used when trying to guess theme location private static String APP_URL = null; @@ -147,17 +145,26 @@ public class SamplerApplication extends Application { * */ class SamplerWindow extends Window { + + private final ThemeResource EMPTY_THEME_ICON = new ThemeResource( + "../sampler/sampler/icon-empty.png"); + + private final ThemeResource SELECTED_THEME_ICON = new ThemeResource( + "../sampler/sampler/select-bullet.png"); + + private String currentTheme = SAMPLER_THEME_NAME + "-" + THEMES[0]; + private FeatureList currentList = new FeatureGrid(); - private FeatureView featureView = new FeatureView(); - private ObjectProperty currentFeature = new ObjectProperty(null, + private final FeatureView featureView = new FeatureView(); + private final ObjectProperty currentFeature = new ObjectProperty(null, Feature.class); - private ModeSwitch mode; + private final ModeSwitch mode; - private SplitPanel mainSplit; - private Tree navigationTree; + private final SplitPanel mainSplit; + private final Tree navigationTree; // itmill: UA-658457-6 - private GoogleAnalytics webAnalytics = new GoogleAnalytics( + private final GoogleAnalytics webAnalytics = new GoogleAnalytics( "UA-658457-6", "none"); // "backbutton" UriFragmentUtility uriFragmentUtility = new UriFragmentUtility(); @@ -376,18 +383,24 @@ public class SamplerApplication extends Application { theme.setImmediate(true); theme.setNullSelectionAllowed(false); for (String themeName : THEMES) { - theme.addItem(SAMPLER_THEME_NAME + "-" + themeName); - theme.setItemCaption(SAMPLER_THEME_NAME + "-" + themeName, - themeName.substring(0, 1).toUpperCase() - + themeName.substring(1) + " theme"); + String id = SAMPLER_THEME_NAME + "-" + themeName; + theme.addItem(id); + theme.setItemCaption(id, themeName.substring(0, 1) + .toUpperCase() + + themeName.substring(1) + " theme"); + theme.setItemIcon(id, EMPTY_THEME_ICON); } theme.setValue(currentTheme); + theme.setItemIcon(currentTheme, SELECTED_THEME_ICON); theme.addListener(new ComboBox.ValueChangeListener() { public void valueChange(ValueChangeEvent event) { + final String newTheme = event.getProperty().getValue() .toString(); setTheme(newTheme); + theme.setItemIcon(currentTheme, EMPTY_THEME_ICON); + theme.setItemIcon(newTheme, SELECTED_THEME_ICON); currentTheme = newTheme; } }); @@ -617,7 +630,7 @@ public class SamplerApplication extends Application { * Table -mode FeatureList. Displays the features in a Table. */ private class FeatureTable extends Table implements FeatureList { - private HashMap iconCache = new HashMap(); + private final HashMap iconCache = new HashMap(); FeatureTable() { setStyleName("featuretable"); @@ -717,7 +730,7 @@ public class SamplerApplication extends Application { private class FeatureGrid extends Panel implements FeatureList { GridLayout grid = new GridLayout(11, 1); - private HashMap iconCache = new HashMap(); + private final HashMap iconCache = new HashMap(); FeatureGrid() { setSizeFull(); -- cgit v1.2.3 From 32fbbaaaa6907f2aee1657ed5bcd509abeb4ee11 Mon Sep 17 00:00:00 2001 From: Artur Signell Date: Thu, 17 Sep 2009 11:28:26 +0000 Subject: Fixed #3351 - Sampler uses the same theme for all users svn changeset:8826/svn branch:6.1 --- .../vaadin/demo/sampler/SamplerApplication.java | 22 +++++++++++++++------- 1 file changed, 15 insertions(+), 7 deletions(-) (limited to 'src/com') diff --git a/src/com/vaadin/demo/sampler/SamplerApplication.java b/src/com/vaadin/demo/sampler/SamplerApplication.java index 7122acf506..91ae0b4c84 100644 --- a/src/com/vaadin/demo/sampler/SamplerApplication.java +++ b/src/com/vaadin/demo/sampler/SamplerApplication.java @@ -59,6 +59,9 @@ public class SamplerApplication extends Application { // used when trying to guess theme location private static String APP_URL = null; + private String currentApplicationTheme = SAMPLER_THEME_NAME + "-" + + THEMES[0]; + @Override public void init() { setMainWindow(new SamplerWindow()); @@ -152,8 +155,6 @@ public class SamplerApplication extends Application { private final ThemeResource SELECTED_THEME_ICON = new ThemeResource( "../sampler/sampler/select-bullet.png"); - private String currentTheme = SAMPLER_THEME_NAME + "-" + THEMES[0]; - private FeatureList currentList = new FeatureGrid(); private final FeatureView featureView = new FeatureView(); private final ObjectProperty currentFeature = new ObjectProperty(null, @@ -192,7 +193,7 @@ public class SamplerApplication extends Application { setSizeFull(); mainExpand.setSizeFull(); setCaption("Vaadin Sampler"); - setTheme(currentTheme); + setTheme(currentApplicationTheme); // topbar (navigation) HorizontalLayout nav = new HorizontalLayout(); @@ -390,8 +391,10 @@ public class SamplerApplication extends Application { + themeName.substring(1) + " theme"); theme.setItemIcon(id, EMPTY_THEME_ICON); } - theme.setValue(currentTheme); - theme.setItemIcon(currentTheme, SELECTED_THEME_ICON); + + final String currentWindowTheme = getTheme(); + theme.setValue(currentWindowTheme); + theme.setItemIcon(currentWindowTheme, SELECTED_THEME_ICON); theme.addListener(new ComboBox.ValueChangeListener() { public void valueChange(ValueChangeEvent event) { @@ -399,9 +402,14 @@ public class SamplerApplication extends Application { final String newTheme = event.getProperty().getValue() .toString(); setTheme(newTheme); - theme.setItemIcon(currentTheme, EMPTY_THEME_ICON); + + for (String themeName : THEMES) { + String id = SAMPLER_THEME_NAME + "-" + themeName; + theme.setItemIcon(id, EMPTY_THEME_ICON); + } + theme.setItemIcon(newTheme, SELECTED_THEME_ICON); - currentTheme = newTheme; + currentApplicationTheme = newTheme; } }); -- cgit v1.2.3 From 83910cf475ca2b8521edcf64ac9dc8dea4de74a7 Mon Sep 17 00:00:00 2001 From: Artur Signell Date: Thu, 17 Sep 2009 11:58:19 +0000 Subject: Merged: Fixed #3306 - Sample NotificationCustom does not seem to support serialization svn changeset:8830/svn branch:6.2 --- .../demo/sampler/features/notifications/NotificationCustomExample.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/com') diff --git a/src/com/vaadin/demo/sampler/features/notifications/NotificationCustomExample.java b/src/com/vaadin/demo/sampler/features/notifications/NotificationCustomExample.java index b201ae123d..8821e8cec1 100644 --- a/src/com/vaadin/demo/sampler/features/notifications/NotificationCustomExample.java +++ b/src/com/vaadin/demo/sampler/features/notifications/NotificationCustomExample.java @@ -16,7 +16,7 @@ import com.vaadin.ui.Window.Notification; @SuppressWarnings("serial") public class NotificationCustomExample extends VerticalLayout { - private static final Object CAPTION_PROPERTY = new Object(); + private static final String CAPTION_PROPERTY = "CAPTION"; public NotificationCustomExample() { setSpacing(true); -- cgit v1.2.3 From 6799e62e05f9ba8554c124261b9e0d545c3fb9e9 Mon Sep 17 00:00:00 2001 From: Artur Signell Date: Thu, 17 Sep 2009 13:23:30 +0000 Subject: Merged: Fix for #3095 - Sorting of a HierarchicalContainer does not work svn changeset:8835/svn branch:6.2 --- .../vaadin/data/util/HierarchicalContainer.java | 36 +++++++++++++--------- src/com/vaadin/data/util/IndexedContainer.java | 17 +++++++--- 2 files changed, 34 insertions(+), 19 deletions(-) (limited to 'src/com') diff --git a/src/com/vaadin/data/util/HierarchicalContainer.java b/src/com/vaadin/data/util/HierarchicalContainer.java index 9ef4cdeb60..a6af0427ad 100644 --- a/src/com/vaadin/data/util/HierarchicalContainer.java +++ b/src/com/vaadin/data/util/HierarchicalContainer.java @@ -6,8 +6,8 @@ package com.vaadin.data.util; import java.util.Collection; import java.util.Collections; +import java.util.HashMap; import java.util.HashSet; -import java.util.Hashtable; import java.util.LinkedList; import com.vaadin.data.Container; @@ -29,22 +29,22 @@ public class HierarchicalContainer extends IndexedContainer implements /** * Set of IDs of those contained Items that can't have children. */ - private final HashSet noChildrenAllowed = new HashSet(); + private final HashSet noChildrenAllowed = new HashSet(); /** * Mapping from Item ID to parent Item. */ - private final Hashtable parent = new Hashtable(); + private final HashMap parent = new HashMap(); /** * Mapping from Item ID to a list of child IDs. */ - private final Hashtable children = new Hashtable(); + private final HashMap> children = new HashMap>(); /** * List that contains all root elements of the container. */ - private final LinkedList roots = new LinkedList(); + private final LinkedList roots = new LinkedList(); /* * Can the specified Item have any children? Don't add a JavaDoc comment @@ -60,7 +60,7 @@ public class HierarchicalContainer extends IndexedContainer implements * interface. */ public Collection getChildren(Object itemId) { - final Collection c = (Collection) children.get(itemId); + final Collection c = children.get(itemId); if (c == null) { return null; } @@ -176,7 +176,7 @@ public class HierarchicalContainer extends IndexedContainer implements if (newParentId == null) { // Removes from old parents children list - final LinkedList l = (LinkedList) children.get(itemId); + final LinkedList l = children.get(itemId); if (l != null) { l.remove(itemId); if (l.isEmpty()) { @@ -210,7 +210,7 @@ public class HierarchicalContainer extends IndexedContainer implements // Updates parent parent.put(itemId, newParentId); - LinkedList pcl = (LinkedList) children.get(newParentId); + LinkedList pcl = children.get(newParentId); if (pcl == null) { pcl = new LinkedList(); children.put(newParentId, pcl); @@ -221,7 +221,7 @@ public class HierarchicalContainer extends IndexedContainer implements if (oldParentId == null) { roots.remove(itemId); } else { - final LinkedList l = (LinkedList) children.get(oldParentId); + final LinkedList l = children.get(oldParentId); if (l != null) { l.remove(itemId); if (l.isEmpty()) { @@ -251,8 +251,7 @@ public class HierarchicalContainer extends IndexedContainer implements /* * (non-Javadoc) * - * @see - * com.vaadin.data.util.IndexedContainer#addItem(java.lang.Object) + * @see com.vaadin.data.util.IndexedContainer#addItem(java.lang.Object) */ @Override public Item addItem(Object itemId) { @@ -284,9 +283,7 @@ public class HierarchicalContainer extends IndexedContainer implements /* * (non-Javadoc) * - * @see - * com.vaadin.data.util.IndexedContainer#removeItem(java.lang.Object - * ) + * @see com.vaadin.data.util.IndexedContainer#removeItem(java.lang.Object ) */ @Override public boolean removeItem(Object itemId) { @@ -299,7 +296,7 @@ public class HierarchicalContainer extends IndexedContainer implements children.remove(itemId); final Object p = parent.get(itemId); if (p != null) { - final LinkedList c = (LinkedList) children.get(p); + final LinkedList c = children.get(p); if (c != null) { c.remove(itemId); } @@ -311,4 +308,13 @@ public class HierarchicalContainer extends IndexedContainer implements return success; } + @Override + void doSort() { + super.doSort(); + Collections.sort(roots, this); + for (LinkedList childList : children.values()) { + Collections.sort(childList, this); + } + } + } diff --git a/src/com/vaadin/data/util/IndexedContainer.java b/src/com/vaadin/data/util/IndexedContainer.java index 5e52c729ee..b7c6463988 100644 --- a/src/com/vaadin/data/util/IndexedContainer.java +++ b/src/com/vaadin/data/util/IndexedContainer.java @@ -49,7 +49,7 @@ import com.vaadin.data.Property; @SuppressWarnings("serial") public class IndexedContainer implements Container.Indexed, Container.ItemSetChangeNotifier, Container.PropertySetChangeNotifier, - Property.ValueChangeNotifier, Container.Sortable, Comparator, + Property.ValueChangeNotifier, Container.Sortable, Comparator, Cloneable, Container.Filterable { /* Internal structure */ @@ -57,7 +57,7 @@ public class IndexedContainer implements Container.Indexed, /** * Linked list of ordered Item IDs. */ - private ArrayList itemIds = new ArrayList(); + private ArrayList itemIds = new ArrayList(); /** List of item ids that passes the filtering */ private LinkedHashSet filteredItemIds = null; @@ -1399,8 +1399,8 @@ public class IndexedContainer implements Container.Indexed, sortDirection[i] = (orders.get(i)).booleanValue(); } - // Sort - Collections.sort(itemIds, this); + doSort(); + if (filteredItemIds != null) { updateContainerFiltering(); } else { @@ -1413,6 +1413,15 @@ public class IndexedContainer implements Container.Indexed, } + /** + * Perform the sorting of the container. Called when everything needed for + * the compare function has been set up. + * + */ + void doSort() { + Collections.sort(itemIds, this); + } + /* * (non-Javadoc) * -- cgit v1.2.3 From 0778b963470cd893712ba000319919bb329cfc18 Mon Sep 17 00:00:00 2001 From: Artur Signell Date: Fri, 18 Sep 2009 06:15:44 +0000 Subject: Merged: Fixed #3371 - Remove obsolete testingtools references svn changeset:8841/svn branch:6.2 --- WebContent/WEB-INF/web.xml | 12 ------------ build/package/WebContent/WEB-INF/web.xml | 20 -------------------- .../terminal/gwt/client/ApplicationConnection.java | 4 ++-- 3 files changed, 2 insertions(+), 34 deletions(-) (limited to 'src/com') diff --git a/WebContent/WEB-INF/web.xml b/WebContent/WEB-INF/web.xml index 61ec738724..a2c51c3646 100644 --- a/WebContent/WEB-INF/web.xml +++ b/WebContent/WEB-INF/web.xml @@ -19,18 +19,6 @@ false Vaadin production mode - - - testingToolsActive - true - IT Mill Testing Tools activation - - - - testingToolsServerUri - http://192.168.1.242:8099/TestingToolsServer - IT Mill Testing Tools URI - VaadinApplicationRunner diff --git a/build/package/WebContent/WEB-INF/web.xml b/build/package/WebContent/WEB-INF/web.xml index e78047ca48..f80129b810 100644 --- a/build/package/WebContent/WEB-INF/web.xml +++ b/build/package/WebContent/WEB-INF/web.xml @@ -19,26 +19,6 @@ Vaadin production mode - - - testingToolsActive - true - IT Mill Testing Tools activation - - - - - testingToolsServerUri - http://192.168.1.242:8099/TestingToolsServer - IT Mill Testing Tools URI - -