| OLD | NEW |
| 1 This tests that events are properly propagated through Widget hierarchy. | 1 This tests that events are properly propagated through Widget hierarchy. |
| 2 | 2 |
| 3 | 3 |
| 4 Running: testShowWidget | 4 Running: testShowWidget |
| 5 Widget() | 5 Widget() |
| 6 Widget.show() | 6 Widget.show() |
| 7 Widget.wasShown() | 7 Widget.wasShown() |
| 8 Widget.onResize() | 8 Widget.onResize() |
| 9 Widget.detach() | 9 Widget.detach() |
| 10 Widget.willHide() | 10 Widget.willHide() |
| (...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 237 Parent.detach() | 237 Parent.detach() |
| 238 Child.willHide() | 238 Child.willHide() |
| 239 Parent.willHide() | 239 Parent.willHide() |
| 240 | 240 |
| 241 Running: testAlienParent | 241 Running: testAlienParent |
| 242 Parent() | 242 Parent() |
| 243 Parent() | 243 Parent() |
| 244 Child() | 244 Child() |
| 245 Error: Attempt to show under node belonging to alien widget | 245 Error: Attempt to show under node belonging to alien widget |
| 246 | 246 |
| 247 Running: testReparentWithinWidget |
| 248 Parent() |
| 249 Parent.show() |
| 250 Parent.wasShown() |
| 251 Parent.onResize() |
| 252 Child() |
| 253 Child.show() |
| 254 Child.wasShown() |
| 255 Child.onResize() |
| 256 Child.show() |
| 257 Child.onResize() |
| 258 |
| OLD | NEW |