1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/views/dom_view.h"
#include "chrome/test/in_process_browser_test.h"
#include "chrome/test/ui_test_utils.h"
#include "views/widget/root_view.h"
#include "views/widget/widget.h"
using namespace views;
class DOMViewTest : public InProcessBrowserTest {
public:
Widget* CreatePopupWindow() {
Widget* window =
Widget::CreatePopupWidget(Widget::NotTransparent,
Widget::AcceptEvents,
Widget::DeleteOnDestroy,
Widget::DontMirrorOriginInRTL);
window->Init(NULL, gfx::Rect(0, 0, 400, 400));
return window;
}
};
// Tests if creating and deleting dom_view
// does not crash and leak memory.
IN_PROC_BROWSER_TEST_F(DOMViewTest, TestShowAndHide) {
Widget* one = CreatePopupWindow();
DOMView* dom_view = new DOMView();
one->GetRootView()->AddChildView(dom_view);
dom_view->Init(browser()->profile(), NULL);
dom_view->LoadURL(GURL("http://www.google.com"));
ui_test_utils::WaitForNotification(NotificationType::LOAD_STOP);
one->Show();
ui_test_utils::RunAllPendingInMessageLoop();
one->Hide();
}
// Tests if removing from tree then deleting dom_view
// does not crash and leak memory.
IN_PROC_BROWSER_TEST_F(DOMViewTest, TestRemoveAndDelete) {
Widget* one = CreatePopupWindow();
DOMView* dom_view = new DOMView();
one->GetRootView()->AddChildView(dom_view);
dom_view->Init(browser()->profile(), NULL);
dom_view->LoadURL(GURL("http://www.google.com"));
ui_test_utils::WaitForNotification(NotificationType::LOAD_STOP);
one->Show();
ui_test_utils::RunAllPendingInMessageLoop();
one->GetRootView()->RemoveChildView(dom_view);
delete dom_view;
one->Hide();
}
// Tests if reparenting dom_view does not crash and does not leak
// memory.
IN_PROC_BROWSER_TEST_F(DOMViewTest, TestReparent) {
Widget* one = CreatePopupWindow();
DOMView* dom_view = new DOMView();
one->GetRootView()->AddChildView(dom_view);
dom_view->Init(browser()->profile(), NULL);
dom_view->LoadURL(GURL("http://www.google.com"));
ui_test_utils::WaitForNotification(NotificationType::LOAD_STOP);
one->Show();
ui_test_utils::RunAllPendingInMessageLoop();
one->GetRootView()->RemoveChildView(dom_view);
one->Hide();
// Re-attach to another Widget.
Widget* two = CreatePopupWindow();
two->GetRootView()->AddChildView(dom_view);
two->Show();
ui_test_utils::RunAllPendingInMessageLoop();
two->Hide();
}
|