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 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527
|
// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/ui/webui/top_chrome/webui_contents_preload_manager.h"
#include <memory>
#include <optional>
#include <vector>
#include "base/test/scoped_feature_list.h"
#include "base/test/task_environment.h"
#include "base/time/time.h"
#include "chrome/browser/ui/ui_features.h"
#include "chrome/browser/ui/webui/top_chrome/preload_candidate_selector.h"
#include "chrome/browser/ui/webui/top_chrome/preload_context.h"
#include "chrome/browser/ui/webui/top_chrome/top_chrome_web_ui_controller.h"
#include "chrome/browser/ui/webui/top_chrome/webui_contents_preload_manager_test_api.h"
#include "chrome/common/webui_url_constants.h"
#include "chrome/test/base/chrome_render_view_host_test_harness.h"
#include "chrome/test/base/testing_profile.h"
#include "components/memory_pressure/fake_memory_pressure_monitor.h"
#include "content/public/test/browser_task_environment.h"
#include "content/public/test/browser_test_utils.h"
#include "content/public/test/web_contents_tester.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "url/gurl.h"
using testing::_;
using testing::Return;
using RequestResult = WebUIContentsPreloadManager::RequestResult;
namespace {
template <typename T>
T ExpectHasValue(std::optional<T> optional) {
EXPECT_TRUE(optional.has_value());
return *optional;
}
class MockPreloadCandidateSelector : public webui::PreloadCandidateSelector {
public:
MOCK_METHOD(void, Init, (const std::vector<GURL>&), (override));
MOCK_METHOD(std::optional<GURL>,
GetURLToPreload,
(const webui::PreloadContext&),
(const, override));
};
} // namespace
class WebUIContentsPreloadManagerTest : public ChromeRenderViewHostTestHarness {
public:
WebUIContentsPreloadManagerTest()
: ChromeRenderViewHostTestHarness(
base::test::TaskEnvironment::TimeSource::MOCK_TIME) {}
// ChromeRenderViewHostTestHarness:
void SetUp() override {
ChromeRenderViewHostTestHarness::SetUp();
// Always preload Tab Search.
auto preload_candidate_selector =
std::make_unique<testing::NiceMock<MockPreloadCandidateSelector>>();
preload_candidate_selector_ = preload_candidate_selector.get();
test_api().SetPreloadCandidateSelector(
std::move(preload_candidate_selector));
ON_CALL(*preload_candidate_selector_, GetURLToPreload(_))
.WillByDefault(Return(GURL(chrome::kChromeUITabSearchURL)));
}
void TearDown() override {
preload_candidate_selector_ = nullptr;
// The mock object does not expect itself to leak outside of the test.
// Clearing it from the preload manager to destroy it.
test_api().SetPreloadCandidateSelector(nullptr);
ChromeRenderViewHostTestHarness::TearDown();
}
// Fast forwards the time to trigger the preload.
// Preloading is triggered by either:
// 1. A delay deadline is reached.
// 2. The WebContents specified as the busy WebContents to watch emits the
// first non-empty paint.
// Since in unit tests the web contents never actually paint, the only way to
// trigger the preload is to fast forward the time.
void FastForwardToTriggerPreload() {
constexpr base::TimeDelta deadline = base::Seconds(3);
task_environment()->FastForwardBy(deadline);
}
WebUIContentsPreloadManager* preload_manager() {
return WebUIContentsPreloadManager::GetInstance();
}
void SetMemoryPressureLevel(
base::MemoryPressureMonitor::MemoryPressureLevel level) {
fake_memory_monitor_.SetAndNotifyMemoryPressure(level);
}
MockPreloadCandidateSelector& preload_candidate_selector() {
return *preload_candidate_selector_;
}
WebUIContentsPreloadManagerTestAPI& test_api() { return test_api_; }
private:
memory_pressure::test::FakeMemoryPressureMonitor fake_memory_monitor_;
base::test::ScopedFeatureList enabled_feature_{
features::kPreloadTopChromeWebUI};
WebUIContentsPreloadManagerTestAPI test_api_;
raw_ptr<MockPreloadCandidateSelector> preload_candidate_selector_;
};
TEST_F(WebUIContentsPreloadManagerTest, PreloadedContentsIsNullWithoutWarmup) {
EXPECT_EQ(preload_manager()->preloaded_web_contents(), nullptr);
}
TEST_F(WebUIContentsPreloadManagerTest, PreloadedContentsIsNotNullAfterWarmup) {
std::unique_ptr<content::BrowserContext> browser_context =
std::make_unique<TestingProfile>();
test_api().MaybePreloadForBrowserContext(browser_context.get());
EXPECT_NE(preload_manager()->preloaded_web_contents(), nullptr);
}
TEST_F(WebUIContentsPreloadManagerTest, NoPreloadUnderHeavyMemoryPressure) {
// Don't preload if the memory pressure is moderate or higher.
SetMemoryPressureLevel(base::MemoryPressureMonitor::MemoryPressureLevel::
MEMORY_PRESSURE_LEVEL_MODERATE);
std::unique_ptr<content::BrowserContext> browser_context =
std::make_unique<TestingProfile>();
test_api().MaybePreloadForBrowserContext(browser_context.get());
EXPECT_EQ(preload_manager()->preloaded_web_contents(), nullptr);
}
TEST_F(WebUIContentsPreloadManagerTest, RequestReturnsNonNull) {
std::unique_ptr<content::BrowserContext> browser_context =
std::make_unique<TestingProfile>();
RequestResult result =
preload_manager()->Request(GURL("about:blank"), browser_context.get());
std::unique_ptr<content::WebContents> web_contents =
std::move(result.web_contents);
EXPECT_NE(web_contents, nullptr);
}
TEST_F(WebUIContentsPreloadManagerTest,
PreloadedContentsIsNotNullAfterRequest) {
std::unique_ptr<content::BrowserContext> browser_context =
std::make_unique<TestingProfile>();
preload_manager()->Request(GURL("about:blank"), browser_context.get());
FastForwardToTriggerPreload();
EXPECT_NE(preload_manager()->preloaded_web_contents(), nullptr);
}
TEST_F(WebUIContentsPreloadManagerTest,
PreloadedContentsChangesAfterSecondWarmupWithDifferentContext) {
std::unique_ptr<content::BrowserContext> first_browser_context =
std::make_unique<TestingProfile>();
test_api().MaybePreloadForBrowserContext(first_browser_context.get());
content::WebContents* first_preloaded_contents =
preload_manager()->preloaded_web_contents();
std::unique_ptr<content::BrowserContext> second_browser_context =
std::make_unique<TestingProfile>();
test_api().MaybePreloadForBrowserContext(second_browser_context.get());
content::WebContents* second_preloaded_contents =
preload_manager()->preloaded_web_contents();
EXPECT_NE(first_preloaded_contents, second_preloaded_contents);
}
TEST_F(WebUIContentsPreloadManagerTest,
WebContentsDiffersAfterWarmupThenRequestWithDifferentContext) {
std::unique_ptr<content::BrowserContext> first_browser_context =
std::make_unique<TestingProfile>();
test_api().MaybePreloadForBrowserContext(first_browser_context.get());
content::WebContents* pre_warmup_web_contents =
preload_manager()->preloaded_web_contents();
std::unique_ptr<content::BrowserContext> second_browser_context =
std::make_unique<TestingProfile>();
RequestResult result = preload_manager()->Request(
GURL("about:blank"), second_browser_context.get());
std::unique_ptr<content::WebContents> made_web_contents =
std::move(result.web_contents);
EXPECT_NE(pre_warmup_web_contents, made_web_contents.get());
}
TEST_F(WebUIContentsPreloadManagerTest,
WebContentsSameAfterWarmupThenRequestWithSameContext) {
std::unique_ptr<content::BrowserContext> browser_context =
std::make_unique<TestingProfile>();
test_api().MaybePreloadForBrowserContext(browser_context.get());
content::WebContents* pre_warmup_web_contents =
preload_manager()->preloaded_web_contents();
RequestResult result =
preload_manager()->Request(GURL("about:blank"), browser_context.get());
std::unique_ptr<content::WebContents> made_web_contents =
std::move(result.web_contents);
EXPECT_EQ(pre_warmup_web_contents, made_web_contents.get());
}
TEST_F(WebUIContentsPreloadManagerTest,
PreloadedContentsBecomesNullAfterProfileDestruction) {
std::unique_ptr<content::BrowserContext> browser_context =
std::make_unique<TestingProfile>();
test_api().MaybePreloadForBrowserContext(browser_context.get());
EXPECT_NE(preload_manager()->preloaded_web_contents(), nullptr);
// Destroy the BrowserContext.
browser_context.reset();
// Now, check if the preloaded contents have been cleared and become nullptr.
// This assumes that WebUIContentsPreloadManager listens to BrowserContext
// destruction and acts accordingly.
EXPECT_EQ(preload_manager()->preloaded_web_contents(), nullptr);
}
// Verify that calling Request() navigates to the requested URL.
TEST_F(WebUIContentsPreloadManagerTest, RequestNavigation) {
std::unique_ptr<content::BrowserContext> browser_context =
std::make_unique<TestingProfile>();
GURL url_to_preload =
*(test_api().GetNextWebUIURLToPreload(browser_context.get()));
test_api().MaybePreloadForBrowserContext(browser_context.get());
// Case 1: Request with the preloaded URL.
{
content::WebContents* preloaded_web_contents =
preload_manager()->preloaded_web_contents();
EXPECT_EQ(preloaded_web_contents->GetURL(), url_to_preload);
RequestResult result =
preload_manager()->Request(url_to_preload, browser_context.get());
std::unique_ptr<content::WebContents> web_contents =
std::move(result.web_contents);
EXPECT_EQ(web_contents.get(), preloaded_web_contents);
}
// Case 2: Request with a different URL.
{
GURL different_url("about:blank");
EXPECT_NE(url_to_preload,
different_url); // Ensure the URL is indeed different.
FastForwardToTriggerPreload();
content::WebContents* preloaded_web_contents =
preload_manager()->preloaded_web_contents();
RequestResult result =
preload_manager()->Request(different_url, browser_context.get());
std::unique_ptr<content::WebContents> web_contents =
std::move(result.web_contents);
// WebContents is reused and navigated to the given URL.
EXPECT_EQ(web_contents.get(), preloaded_web_contents);
EXPECT_EQ(web_contents->GetURL(), different_url);
}
}
// Test that RequestResult::is_ready_to_show is initially false, and it
// becomes true after the preloaded WebUI calls
// TopChromeWebUIController::Embedder::ShowUI().
TEST_F(WebUIContentsPreloadManagerTest, IsReadyToShow) {
std::unique_ptr<content::BrowserContext> browser_context =
std::make_unique<TestingProfile>();
test_api().MaybePreloadForBrowserContext(browser_context.get());
GURL preloaded_url = ExpectHasValue(test_api().GetPreloadedURL());
// `is_ready_to_show` should be initially false.
RequestResult result =
preload_manager()->Request(preloaded_url, browser_context.get());
EXPECT_NE(result.web_contents, nullptr);
EXPECT_FALSE(result.is_ready_to_show);
FastForwardToTriggerPreload();
content::WebContents* preloaded_web_contents =
preload_manager()->preloaded_web_contents();
ASSERT_NE(preloaded_web_contents, nullptr);
FastForwardToTriggerPreload();
auto* webui_controller = static_cast<TopChromeWebUIController*>(
preloaded_web_contents->GetWebUI()->GetController());
ASSERT_NE(webui_controller, nullptr);
webui_controller->embedder()->ShowUI();
// `is_ready_to_show` should be true after ShowUI() call.
result = preload_manager()->Request(preloaded_url, browser_context.get());
EXPECT_TRUE(result.is_ready_to_show);
}
// Regression test for crbug.com/329954901.
TEST_F(WebUIContentsPreloadManagerTest, RequestThenWarmupShouldNotCrash) {
std::unique_ptr<content::BrowserContext> browser_context =
std::make_unique<TestingProfile>();
std::unique_ptr<content::BrowserContext> browser_context2 =
std::make_unique<TestingProfile>();
const GURL url_to_preload =
*(test_api().GetNextWebUIURLToPreload(browser_context.get()));
RequestResult result =
preload_manager()->Request(url_to_preload, browser_context.get());
// Preload for a different browser context.
test_api().MaybePreloadForBrowserContext(browser_context2.get());
}
// Tests that the preload manager preloads the WebUI decided by the candidate
// selector.
TEST_F(WebUIContentsPreloadManagerTest, CandidateSelector) {
std::unique_ptr<content::BrowserContext> browser_context =
std::make_unique<TestingProfile>();
const GURL url1("chrome://example1"), url2("chrome://example2");
ON_CALL(preload_candidate_selector(), GetURLToPreload(_))
.WillByDefault(Return(url1));
test_api().MaybePreloadForBrowserContext(browser_context.get());
EXPECT_EQ(preload_manager()->preloaded_web_contents()->GetVisibleURL(), url1);
ON_CALL(preload_candidate_selector(), GetURLToPreload(_))
.WillByDefault(Return(url2));
RequestResult result =
preload_manager()->Request(url1, browser_context.get());
EXPECT_EQ(result.web_contents->GetVisibleURL(), url1);
FastForwardToTriggerPreload();
EXPECT_EQ(preload_manager()->preloaded_web_contents()->GetVisibleURL(), url2);
}
// Tests that WebUI destroy may trigger new preloading.
TEST_F(WebUIContentsPreloadManagerTest, PreloadOnWebUIDestroy) {
std::unique_ptr<content::BrowserContext> browser_context =
std::make_unique<TestingProfile>();
const GURL url1("chrome://example1"), url2("chrome://example2");
// URL1 is preferred over URL2.
ON_CALL(preload_candidate_selector(), GetURLToPreload(_))
.WillByDefault(Return(url1));
test_api().MaybePreloadForBrowserContext(browser_context.get());
// Initially, URL1 is preloaded.
EXPECT_EQ(preload_manager()->preloaded_web_contents()->GetVisibleURL(), url1);
// Now, show URL1, then URL2 is preloaded.
ON_CALL(preload_candidate_selector(), GetURLToPreload(_))
.WillByDefault(Return(url2));
RequestResult result =
preload_manager()->Request(url1, browser_context.get());
EXPECT_EQ(result.web_contents->GetVisibleURL(), url1);
FastForwardToTriggerPreload();
EXPECT_EQ(preload_manager()->preloaded_web_contents()->GetVisibleURL(), url2);
// Destroy URL1. Since URL1 is preferred over URL2, URL1 should be preloaded.
ON_CALL(preload_candidate_selector(), GetURLToPreload(_))
.WillByDefault(Return(url1));
result.web_contents.reset();
FastForwardToTriggerPreload();
EXPECT_EQ(preload_manager()->preloaded_web_contents()->GetVisibleURL(), url1);
}
// Tests that `Request(url)` retains the url path if it exists.
TEST_F(WebUIContentsPreloadManagerTest, RequestURLHasPath) {
std::unique_ptr<content::BrowserContext> browser_context =
std::make_unique<TestingProfile>();
const GURL url1("chrome://example1"), url2("chrome://example2");
ON_CALL(preload_candidate_selector(), GetURLToPreload(_))
.WillByDefault(Return(url1));
test_api().MaybePreloadForBrowserContext(browser_context.get());
// Case 1: request a WebUI that is preloaded.
{
EXPECT_EQ(preload_manager()->preloaded_web_contents()->GetVisibleURL(),
url1);
const GURL url1_with_path = url1.Resolve("path");
RequestResult result =
preload_manager()->Request(url1_with_path, browser_context.get());
EXPECT_EQ(result.web_contents->GetVisibleURL(), url1_with_path);
}
// Case 2: request a WebUI that is not preloaded.
{
FastForwardToTriggerPreload();
EXPECT_EQ(preload_manager()->preloaded_web_contents()->GetVisibleURL(),
url1);
const GURL url2_with_path = url2.Resolve("path");
RequestResult result =
preload_manager()->Request(url2_with_path, browser_context.get());
EXPECT_EQ(result.web_contents->GetVisibleURL(), url2_with_path);
}
}
// Tests that the preloading does not happen until the observed web contents
// emits the non-empty paint.
TEST_F(WebUIContentsPreloadManagerTest, DelayPreloadUntilNonEmptyPaint) {
std::unique_ptr<content::BrowserContext> browser_context =
std::make_unique<TestingProfile>();
std::unique_ptr<content::WebContents> test_web_contents =
content::WebContentsTester::CreateTestWebContents(browser_context.get(),
nullptr);
test_api().MaybePreloadForBrowserContextLater(
browser_context.get(), test_web_contents.get(), base::TimeDelta::Max());
// Not yet preload.
EXPECT_EQ(preload_manager()->preloaded_web_contents(), nullptr);
// Notify the first non-empty paint.
content::WebContentsTester::For(test_web_contents.get())
->TestDidFirstVisuallyNonEmptyPaint();
// Now it's preloaded.
EXPECT_NE(preload_manager()->preloaded_web_contents(), nullptr);
}
// Tests that the preloading does not happen until the deadline has passed.
TEST_F(WebUIContentsPreloadManagerTest, DelayPreloadUntilDeadline) {
std::unique_ptr<content::BrowserContext> browser_context =
std::make_unique<TestingProfile>();
const base::TimeDelta deadline = base::Seconds(3);
test_api().MaybePreloadForBrowserContextLater(browser_context.get(), nullptr,
deadline);
// Not yet preload.
EXPECT_EQ(preload_manager()->preloaded_web_contents(), nullptr);
// Fast forward time to pass deadline.
FastForwardToTriggerPreload();
// Now it's preloaded.
EXPECT_NE(preload_manager()->preloaded_web_contents(), nullptr);
}
// Tests that a pending preload is cancelled when a new preload comes in.
TEST_F(WebUIContentsPreloadManagerTest, PendingDelayCancelDueToNewPreload) {
std::unique_ptr<content::BrowserContext> browser_context =
std::make_unique<TestingProfile>();
std::unique_ptr<content::WebContents> test_web_contents =
content::WebContentsTester::CreateTestWebContents(browser_context.get(),
nullptr);
std::unique_ptr<content::BrowserContext> browser_context2 =
std::make_unique<TestingProfile>();
std::unique_ptr<content::WebContents> test_web_contents2 =
content::WebContentsTester::CreateTestWebContents(browser_context2.get(),
nullptr);
test_api().MaybePreloadForBrowserContextLater(
browser_context.get(), test_web_contents.get(), base::TimeDelta::Max());
// Not yet preload.
EXPECT_EQ(preload_manager()->preloaded_web_contents(), nullptr);
// Preload under another profile.
test_api().MaybePreloadForBrowserContextLater(
browser_context2.get(), test_web_contents2.get(), base::TimeDelta::Max());
// Notify the 1st non-empty paint of the first web contents.
content::WebContentsTester::For(test_web_contents.get())
->TestDidFirstVisuallyNonEmptyPaint();
// Still not preloaded.
EXPECT_EQ(preload_manager()->preloaded_web_contents(), nullptr);
// Notify the 2nd non-empty paint of the first web contents.
content::WebContentsTester::For(test_web_contents2.get())
->TestDidFirstVisuallyNonEmptyPaint();
// Now it's preloaded.
EXPECT_NE(preload_manager()->preloaded_web_contents(), nullptr);
EXPECT_EQ(preload_manager()->preloaded_web_contents()->GetBrowserContext(),
browser_context2.get());
}
// Tests that a pending preload is cancelled when its profile is destroying.
TEST_F(WebUIContentsPreloadManagerTest, PendingDelayCancelDueToProfileDestroy) {
std::unique_ptr<content::BrowserContext> browser_context =
std::make_unique<TestingProfile>();
std::unique_ptr<content::WebContents> test_web_contents =
content::WebContentsTester::CreateTestWebContents(browser_context.get(),
nullptr);
const base::TimeDelta deadline = base::Seconds(3);
test_api().MaybePreloadForBrowserContextLater(
browser_context.get(), test_web_contents.get(), deadline);
// Not yet preload.
EXPECT_EQ(preload_manager()->preloaded_web_contents(), nullptr);
// Destroy the profile.
test_web_contents.reset();
browser_context.reset();
// Fast forward time to pass deadline.
FastForwardToTriggerPreload();
// Still not preloaded.
EXPECT_EQ(preload_manager()->preloaded_web_contents(), nullptr);
}
// Tests that delayed preload is eventually fired only once due to non-empty
// paint or deadline passing, but not both.
TEST_F(WebUIContentsPreloadManagerTest, DelayPreloadFireOnce) {
std::unique_ptr<content::BrowserContext> browser_context =
std::make_unique<TestingProfile>();
std::unique_ptr<content::WebContents> test_web_contents =
content::WebContentsTester::CreateTestWebContents(browser_context.get(),
nullptr);
const base::TimeDelta deadline = base::Seconds(3);
// == 1st preload ==
test_api().MaybePreloadForBrowserContextLater(
browser_context.get(), test_web_contents.get(), deadline);
// Not yet preload.
EXPECT_EQ(preload_manager()->preloaded_web_contents(), nullptr);
// Notify the first non-empty paint.
content::WebContentsTester::For(test_web_contents.get())
->TestDidFirstVisuallyNonEmptyPaint();
// Now it's preloaded.
// Retain the preloaded content. Do not destroy it. Destroying it will trigger
// new preload.
std::unique_ptr<content::WebContents> preloaded_content =
test_api().SetPreloadedContents(nullptr);
EXPECT_NE(preloaded_content, nullptr);
EXPECT_EQ(preload_manager()->preloaded_web_contents(), nullptr);
// Fast forward to pass deadline should not trigger preload.
FastForwardToTriggerPreload();
EXPECT_EQ(preload_manager()->preloaded_web_contents(), nullptr);
// == 2nd preload ==
test_api().MaybePreloadForBrowserContextLater(
browser_context.get(), test_web_contents.get(), deadline);
// Not yet preload.
EXPECT_EQ(preload_manager()->preloaded_web_contents(), nullptr);
// Fast forward to pass deadline should trigger preload.
task_environment()->FastForwardBy(deadline);
std::unique_ptr<content::WebContents> preloaded_content2 =
test_api().SetPreloadedContents(nullptr);
EXPECT_NE(preloaded_content2, nullptr);
EXPECT_EQ(preload_manager()->preloaded_web_contents(), nullptr);
// The first non-empty paint should not trigger preload.
content::WebContentsTester::For(test_web_contents.get())
->TestDidFirstVisuallyNonEmptyPaint();
EXPECT_EQ(preload_manager()->preloaded_web_contents(), nullptr);
}
|