summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorLeif Åstrand <leif@vaadin.com>2012-02-08 16:45:45 +0200
committerLeif Åstrand <leif@vaadin.com>2012-02-08 16:45:45 +0200
commitbb759b130abca14aa4fd74a9cf2fde5732a4d5fb (patch)
treebd99d9d305f57670e28b687acc142b4a48388622 /tests
parentcccbe9644aa31fc8a027d9ee256be7edfd5d75c5 (diff)
downloadvaadin-framework-bb759b130abca14aa4fd74a9cf2fde5732a4d5fb.tar.gz
vaadin-framework-bb759b130abca14aa4fd74a9cf2fde5732a4d5fb.zip
Update selectors for the new DOM structure (#8313)
Diffstat (limited to 'tests')
-rw-r--r--tests/testbench/com/vaadin/tests/components/orderedlayout/OrderedLayoutCases.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/testbench/com/vaadin/tests/components/orderedlayout/OrderedLayoutCases.java b/tests/testbench/com/vaadin/tests/components/orderedlayout/OrderedLayoutCases.java
index 2f30b623fd..e127d209cc 100644
--- a/tests/testbench/com/vaadin/tests/components/orderedlayout/OrderedLayoutCases.java
+++ b/tests/testbench/com/vaadin/tests/components/orderedlayout/OrderedLayoutCases.java
@@ -114,9 +114,9 @@ public class OrderedLayoutCases extends AbstractTestRoot {
.injectCSS(
getRoot(),
".sampleChild, .theLayout {border: 1px solid black;}"
- + ".theLayout > div > div:first-child {background: aqua;}"
- + ".theLayout > div > div:first-child + div {background: yellow;}"
- + ".theLayout > div > div:first-child + div + div {background: lightgrey;}");
+ + ".theLayout > div:first-child + div {background: aqua;}"
+ + ".theLayout > div:first-child + div + div {background: yellow;}"
+ + ".theLayout > div:first-child + div + div + div {background: lightgrey;}");
currentLayout = new HorizontalLayout();
for (int i = 0; i < 3; i++) {