summaryrefslogtreecommitdiffstats
path: root/content/public/test
diff options
context:
space:
mode:
authoralexmos <alexmos@chromium.org>2015-08-14 19:54:36 -0700
committerCommit bot <commit-bot@chromium.org>2015-08-15 02:55:14 +0000
commit17e5753ea2e213295dc6a959be2ff286082faacd (patch)
tree8eaa7bb606f5e79c620c1ef1cd2b2740c27ecd0d /content/public/test
parent780b193b7e92cef04c6c1063068e6f5edbf8e3f2 (diff)
downloadchromium_src-17e5753ea2e213295dc6a959be2ff286082faacd.zip
chromium_src-17e5753ea2e213295dc6a959be2ff286082faacd.tar.gz
chromium_src-17e5753ea2e213295dc6a959be2ff286082faacd.tar.bz2
Fix flakiness in postMessage-related SitePerProcessBrowserTests.
See https://crbug.com/518729 for the complete description. This CL fixes two underlying issues for flakiness in SitePerProcessBrowserTest.PostMessageWithSubframeOnOpenerChain: 1. ExecuteScript* wasn't properly dealing with domAutomationController messages that might have arrived right after the expected response to ExecuteScript*, but before its message loop shut down. 2. DOMMessageQueue was instantiated after the ExecuteScript* in the test, causing it to never see the message it was waiting for if it happened to arrive on ExecuteScript's message loop above. BUG=518729 Review URL: https://codereview.chromium.org/1297713004 Cr-Commit-Position: refs/heads/master@{#343548}
Diffstat (limited to 'content/public/test')
-rw-r--r--content/public/test/browser_test_utils.cc8
1 files changed, 5 insertions, 3 deletions
diff --git a/content/public/test/browser_test_utils.cc b/content/public/test/browser_test_utils.cc
index 6042396..214b2fd 100644
--- a/content/public/test/browser_test_utils.cc
+++ b/content/public/test/browser_test_utils.cc
@@ -75,9 +75,11 @@ class DOMOperationObserver : public NotificationObserver,
const NotificationDetails& details) override {
DCHECK(type == NOTIFICATION_DOM_OPERATION_RESPONSE);
Details<DomOperationNotificationDetails> dom_op_details(details);
- response_ = dom_op_details->json;
- did_respond_ = true;
- message_loop_runner_->Quit();
+ if (!did_respond_) {
+ response_ = dom_op_details->json;
+ did_respond_ = true;
+ message_loop_runner_->Quit();
+ }
}
// Overridden from WebContentsObserver: