From 4873d81f370acb6a00ea4daa336979d27dd96e9b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Leif=20=C3=85strand?= Date: Thu, 23 Feb 2012 13:09:02 +0200 Subject: [PATCH] Update selectors now that the spacing element is at the end (#8313) --- .../tests/components/orderedlayout/OrderedLayoutCases.java | 6 +++--- 1 file 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 44960f30bb..172e808070 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:first-child + div {background: aqua;}" - + ".theLayout > div:first-child + div + div {background: yellow;}" - + ".theLayout > div:first-child + div + div + div {background: lightgrey;}"); + + ".theLayout > div:first-child {background: aqua;}" + + ".theLayout > div:first-child + div {background: yellow;}" + + ".theLayout > div:first-child + div + div {background: lightgrey;}"); currentLayout = new HorizontalLayout(); for (int i = 0; i < 3; i++) { -- 2.39.5