Home | History | Annotate | Download | only in core

Lines Matching refs:w11

44   Window* w11 = CreateTestWindowWithId(11, parent.get());
53 AddTransientChild(w1.get(), w11); // w11 is now owned by w1.
61 // Stack w1 at the top (end), this should force w11 to be last (on top of w1).
63 EXPECT_EQ(w11, parent->children().back());
73 parent->StackChildAbove(w11, w2.get());
74 EXPECT_EQ(w11, parent->children().back());
85 parent->StackChildAbove(w11, w21);
86 EXPECT_EQ(w11, parent->children().back());
90 EXPECT_EQ(w11, parent->children().back());
95 EXPECT_EQ(w11, parent->children().back());
105 parent->StackChildAbove(w11, w213);
106 EXPECT_EQ(w11, parent->children().back());
114 Window* w11 = CreateTestWindowWithId(11, parent.get());
123 AddTransientChild(w1.get(), w11); // w11 is now owned by w1.
131 // Stack w2 at the bottom, this should force w11 to be last (on top of w1).
136 EXPECT_EQ(w11, parent->children().back());
144 EXPECT_EQ(w11, parent->children().back());
147 parent->StackChildBelow(w11, w2.get());
155 parent->StackChildBelow(w21, w11);
156 EXPECT_EQ(w11, parent->children().back());
160 EXPECT_EQ(w11, parent->children().back());
165 EXPECT_EQ(w11, parent->children().back());
172 parent->StackChildBelow(w213, w11);
173 EXPECT_EQ(w11, parent->children().back());