Add ewk_view_fullscreen_exit to exit fullscreen mode
[framework/web/webkit-efl.git] / LayoutTests / inspector / view-events-expected.txt
1 This tests that events are properly propagated through View hierarchy.
2
3
4 Running: testShowView
5 View()
6 View.show()
7   View.wasShown()
8   View.onResize()
9 View.detach()
10   View.willHide()
11
12 Running: testAppendViaDOM
13 View()
14 Error: Attempt to add view via regular DOM operation.
15
16 Running: testInsertViaDOM
17 View()
18 Error: Attempt to add view via regular DOM operation.
19
20 Running: testAttachToOrphanNode
21 View()
22 View.show()
23 Error: Attempt to attach view to orphan node
24
25 Running: testImmediateParent
26 Parent()
27 Child()
28 Child.show()
29 OK
30
31 Running: testDistantParent
32 Parent()
33 Child()
34 Child.show()
35 OK
36
37 Running: testEvents
38 Parent()
39 Child()
40 Parent.show()
41   Parent.wasShown()
42   Parent.onResize()
43 Parent.doResize()
44   Parent.onResize()
45 Child.show()
46   Child.wasShown()
47   Child.onResize()
48 Parent.doResize()
49   Parent.onResize()
50   Child.onResize()
51 Parent.detach()
52   Child.willHide()
53   Parent.willHide()
54 Parent.show()
55   Parent.wasShown()
56   Parent.onResize()
57   Child.wasShown()
58   Child.onResize()
59 Child.detach()
60   Child.willHide()
61 Parent.detach()
62   Parent.willHide()
63
64 Running: testEventsHideOnDetach
65 Parent()
66 Child()
67 Parent.show()
68   Parent.wasShown()
69   Parent.onResize()
70 Parent.doResize()
71   Parent.onResize()
72 Child.show()
73   Child.wasShown()
74   Child.onResize()
75 Parent.doResize()
76   Parent.onResize()
77   Child.onResize()
78 Parent.detach()
79   Child.willHide()
80   Parent.willHide()
81 Parent.show()
82   Parent.wasShown()
83   Parent.onResize()
84   Child.wasShown()
85   Child.onResize()
86 Child.detach()
87   Child.willHide()
88 Parent.detach()
89   Parent.willHide()
90
91 Running: testViewCounter
92 Parent()
93 Parent.show()
94   Parent.wasShown()
95   Parent.onResize()
96 Child()
97 Child.show()
98   Child.wasShown()
99   Child.onResize()
100   view counter: 1
101 Child 2()
102 Child 2.show()
103   Child 2.wasShown()
104   Child 2.onResize()
105   view counter: 2
106 Child.detach()
107   Child.willHide()
108   view counter: 1
109 Child 2.detach()
110   Child 2.willHide()
111   view counter: 0
112
113 Running: testRemoveChild
114 Parent()
115 Parent.show()
116   Parent.wasShown()
117   Parent.onResize()
118 Child()
119 Child.show()
120   Child.wasShown()
121   Child.onResize()
122 Error: Attempt to remove element containing view via regular DOM operation
123
124 Running: testImplicitRemoveChild
125 Parent()
126 Child()
127 Child.show()
128 Error: Attempt to remove element containing view via regular DOM operation
129
130 Running: testRemoveChildren
131 Parent()
132 Child()
133 Child.show()
134 Error: Attempt to remove element containing view via regular DOM operation
135
136 Running: testImplicitRemoveChildren
137 Parent()
138 Child()
139 Child.show()
140 Error: Attempt to remove element containing view via regular DOM operation
141