Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(278)

Unified Diff: content/browser/browser_plugin/browser_plugin_host_browsertest.cc

Issue 11094080: Browser Plugin: More robust recovery from guest crash (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/browser_plugin/browser_plugin_host_browsertest.cc
diff --git a/content/browser/browser_plugin/browser_plugin_host_browsertest.cc b/content/browser/browser_plugin/browser_plugin_host_browsertest.cc
index 703a4f9e894ce006e34f8cb50df369202d02aa0e..fe59c8fe225c466bab15d4461dd8bfc71692b71b 100644
--- a/content/browser/browser_plugin/browser_plugin_host_browsertest.cc
+++ b/content/browser/browser_plugin/browser_plugin_host_browsertest.cc
@@ -641,6 +641,49 @@ IN_PROC_BROWSER_TEST_F(BrowserPluginHostTest, TerminateGuest) {
test_guest()->WaitForCrashed();
}
+// This test verifies that the guest is responsive after crashing and going back
+// to a previous navigation entry.
+IN_PROC_BROWSER_TEST_F(BrowserPluginHostTest, BackAfterTerminateGuest) {
+ const char* kEmbedderURL = "files/browser_plugin_embedder.html";
+ StartBrowserPluginTest(
+ kEmbedderURL, GetHTMLForGuestWithTitle("P1"), true, "");
+ RenderViewHostImpl* rvh = static_cast<RenderViewHostImpl*>(
+ test_embedder()->web_contents()->GetRenderViewHost());
+
+ // Navigate to P2 and verify that the navigation occurred.
+ {
+ const string16 expected_title = ASCIIToUTF16("P2");
+ content::TitleWatcher title_watcher(test_guest()->web_contents(),
+ expected_title);
+
+ rvh->ExecuteJavascriptAndGetValue(string16(), ASCIIToUTF16(
+ StringPrintf("SetSrc('%s');", GetHTMLForGuestWithTitle("P2").c_str())));
+
+ string16 actual_title = title_watcher.WaitAndGetTitle();
+ EXPECT_EQ(expected_title, actual_title);
+ }
+ // Kill the guest.
+ rvh->ExecuteJavascriptAndGetValue(string16(), ASCIIToUTF16(
+ "document.getElementById('plugin').terminate()"));
+
+ // Expect the guest to report that it crashed.
+ test_guest()->WaitForCrashed();
+ // Go back and verify that we're back at P1.
+ {
+ const string16 expected_title = ASCIIToUTF16("P1");
+ content::TitleWatcher title_watcher(test_guest()->web_contents(),
+ expected_title);
+
+ rvh->ExecuteJavascriptAndGetValue(string16(), ASCIIToUTF16("Back();"));
+
+ string16 actual_title = title_watcher.WaitAndGetTitle();
+ EXPECT_EQ(expected_title, actual_title);
+ }
+ // Send an input event and verify that the guest receives the input.
+ SimulateMouseClick(test_embedder()->web_contents());
Charlie Reis 2012/10/12 04:10:25 What's the reason for adding all this input event
Fady Samuel 2012/10/12 17:33:06 One of the symptoms manifested by this bug was tha
+ test_guest()->WaitForInput();
+}
+
IN_PROC_BROWSER_TEST_F(BrowserPluginHostTest, LoadStart) {
const char* kEmbedderURL = "files/browser_plugin_embedder.html";
StartBrowserPluginTest(kEmbedderURL, "about:blank", true, "");

Powered by Google App Engine
This is Rietveld 408576698