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 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716
|
/*
* Copyright (C) 1998, 1999 Torben Weis <weis@kde.org>
* 1999 Lars Knoll <knoll@kde.org>
* 1999 Antti Koivisto <koivisto@kde.org>
* 2000 Simon Hausmann <hausmann@kde.org>
* 2000 Stefan Schimanski <1Stein@gmx.de>
* 2001 George Staikos <staikos@kde.org>
* Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All
* rights reserved.
* Copyright (C) 2005 Alexey Proskuryakov <ap@nypop.com>
* Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
* Copyright (C) 2008 Eric Seidel <eric@webkit.org>
* Copyright (C) 2008 Google Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "third_party/blink/renderer/core/frame/frame.h"
#include <memory>
#include "third_party/blink/public/mojom/frame/frame_owner_properties.mojom-blink.h"
#include "third_party/blink/public/web/web_local_frame_client.h"
#include "third_party/blink/public/web/web_remote_frame_client.h"
#include "third_party/blink/renderer/bindings/core/v8/window_proxy_manager.h"
#include "third_party/blink/renderer/core/accessibility/ax_object_cache.h"
#include "third_party/blink/renderer/core/dom/document_type.h"
#include "third_party/blink/renderer/core/dom/events/event.h"
#include "third_party/blink/renderer/core/dom/increment_load_event_delay_count.h"
#include "third_party/blink/renderer/core/dom/node_computed_style.h"
#include "third_party/blink/renderer/core/execution_context/window_agent_factory.h"
#include "third_party/blink/renderer/core/frame/local_dom_window.h"
#include "third_party/blink/renderer/core/frame/page_dismissal_scope.h"
#include "third_party/blink/renderer/core/frame/remote_frame_owner.h"
#include "third_party/blink/renderer/core/frame/settings.h"
#include "third_party/blink/renderer/core/frame/web_remote_frame_impl.h"
#include "third_party/blink/renderer/core/html/html_frame_element_base.h"
#include "third_party/blink/renderer/core/input/event_handler.h"
#include "third_party/blink/renderer/core/layout/layout_embedded_content.h"
#include "third_party/blink/renderer/core/loader/empty_clients.h"
#include "third_party/blink/renderer/core/loader/form_submission.h"
#include "third_party/blink/renderer/core/page/focus_controller.h"
#include "third_party/blink/renderer/core/page/page.h"
#include "third_party/blink/renderer/core/probe/core_probes.h"
#include "third_party/blink/renderer/platform/bindings/script_forbidden_scope.h"
#include "third_party/blink/renderer/platform/instrumentation/instance_counters.h"
#include "third_party/blink/renderer/platform/instrumentation/use_counter.h"
#include "third_party/blink/renderer/platform/loader/fetch/resource_error.h"
#include "third_party/blink/renderer/platform/wtf/assertions.h"
namespace blink {
// static
Frame* Frame::ResolveFrame(const FrameToken& frame_token) {
if (frame_token.Is<RemoteFrameToken>())
return RemoteFrame::FromFrameToken(frame_token.GetAs<RemoteFrameToken>());
DCHECK(frame_token.Is<LocalFrameToken>());
return LocalFrame::FromFrameToken(frame_token.GetAs<LocalFrameToken>());
}
Frame::~Frame() {
InstanceCounters::DecrementCounter(InstanceCounters::kFrameCounter);
DCHECK(!owner_);
DCHECK(IsDetached());
}
void Frame::Trace(Visitor* visitor) const {
visitor->Trace(tree_node_);
visitor->Trace(page_);
visitor->Trace(owner_);
visitor->Trace(window_proxy_manager_);
visitor->Trace(dom_window_);
visitor->Trace(client_);
visitor->Trace(opener_);
visitor->Trace(parent_);
visitor->Trace(previous_sibling_);
visitor->Trace(next_sibling_);
visitor->Trace(first_child_);
visitor->Trace(last_child_);
visitor->Trace(provisional_frame_);
visitor->Trace(navigation_rate_limiter_);
visitor->Trace(window_agent_factory_);
visitor->Trace(opened_frame_tracker_);
}
bool Frame::Detach(FrameDetachType type) {
DCHECK(client_);
// Detach() can be re-entered, so this can't simply DCHECK(IsAttached()).
DCHECK(!IsDetached());
lifecycle_.AdvanceTo(FrameLifecycle::kDetaching);
PageDismissalScope in_page_dismissal;
if (!DetachImpl(type))
return false;
DCHECK(!IsDetached());
DCHECK(client_);
GetPage()->GetFocusController().FrameDetached(this);
// FrameDetached() can fire JS event listeners, so `this` might have been
// reentrantly detached.
if (!client_)
return false;
DCHECK(!IsDetached());
// TODO(dcheng): FocusController::FrameDetached() *should* fire JS events,
// hence the above check for `client_` being null. However, when this was
// previously placed before the `FrameDetached()` call, nothing crashes, which
// is suspicious. Investigate if we really don't need to fire JS events--and
// if we don't, move `forbid_scripts` up to be instantiated sooner and
// simplify this code.
ScriptForbiddenScope forbid_scripts;
if (type == FrameDetachType::kRemove) {
if (provisional_frame_) {
provisional_frame_->Detach(FrameDetachType::kRemove);
}
SetOpener(nullptr);
// Clearing the window proxies can call back into `LocalFrameClient`, so
// this must be done before nulling out `client_` below.
GetWindowProxyManager()->ClearForClose();
} else {
// In the case of a swap, detach is carefully coordinated with `Swap()`.
// Intentionally avoid clearing the opener with `SetOpener(nullptr)` here,
// since `Swap()` needs the original value to clone to the new frame.
DCHECK_EQ(FrameDetachType::kSwap, type);
// Clearing the window proxies can call back into `LocalFrameClient`, so
// this must be done before nulling out `client_` below.
// `ClearForSwap()` preserves the v8::Objects that represent the global
// proxies; `Swap()` will later use `ReleaseGlobalProxies()` +
// `SetGlobalProxies()` to adopt the global proxies into the new frame.
GetWindowProxyManager()->ClearForSwap();
}
// After this, we must no longer talk to the client since this clears
// its owning reference back to our owning LocalFrame.
client_->Detached(type);
client_ = nullptr;
// Mark the frame as detached once |client_| is null, as most of the frame has
// been torn down at this point.
// TODO(dcheng): Once https://crbug.com/820782 is fixed, Frame::Client() will
// also assert that it is only accessed when the frame is not detached.
lifecycle_.AdvanceTo(FrameLifecycle::kDetached);
// TODO(dcheng): This currently needs to happen after calling
// FrameClient::Detached() to make it easier for FrameClient::Detached()
// implementations to detect provisional frames and avoid removing them from
// the frame tree. https://crbug.com/578349.
DisconnectOwnerElement();
page_ = nullptr;
embedding_token_ = base::nullopt;
return true;
}
void Frame::DisconnectOwnerElement() {
if (!owner_)
return;
// TODO(https://crbug.com/578349): If this is a provisional frame, the frame
// owner doesn't actually point to this frame, so don't clear it. Note that
// this can't use IsProvisional() because the |client_| is null already.
if (owner_->ContentFrame() == this)
owner_->ClearContentFrame();
owner_ = nullptr;
}
Page* Frame::GetPage() const {
return page_;
}
bool Frame::IsMainFrame() const {
return !Tree().Parent();
}
bool Frame::IsCrossOriginToMainFrame() const {
DCHECK(GetSecurityContext());
const SecurityOrigin* security_origin =
GetSecurityContext()->GetSecurityOrigin();
return !security_origin->CanAccess(
Tree().Top().GetSecurityContext()->GetSecurityOrigin());
}
bool Frame::IsCrossOriginToParentFrame() const {
DCHECK(GetSecurityContext());
if (IsMainFrame())
return false;
Frame* parent = Tree().Parent();
const SecurityOrigin* parent_security_origin =
parent->GetSecurityContext()->GetSecurityOrigin();
const SecurityOrigin* security_origin =
GetSecurityContext()->GetSecurityOrigin();
return !security_origin->CanAccess(parent_security_origin);
}
HTMLFrameOwnerElement* Frame::DeprecatedLocalOwner() const {
return DynamicTo<HTMLFrameOwnerElement>(owner_.Get());
}
static ChromeClient& GetEmptyChromeClient() {
DEFINE_STATIC_LOCAL(Persistent<EmptyChromeClient>, client,
(MakeGarbageCollected<EmptyChromeClient>()));
return *client;
}
ChromeClient& Frame::GetChromeClient() const {
if (Page* page = this->GetPage())
return page->GetChromeClient();
return GetEmptyChromeClient();
}
Frame* Frame::FindUnsafeParentScrollPropagationBoundary() {
Frame* current_frame = this;
Frame* ancestor_frame = Tree().Parent();
while (ancestor_frame) {
if (!ancestor_frame->GetSecurityContext()->GetSecurityOrigin()->CanAccess(
GetSecurityContext()->GetSecurityOrigin()))
return current_frame;
current_frame = ancestor_frame;
ancestor_frame = ancestor_frame->Tree().Parent();
}
return nullptr;
}
LayoutEmbeddedContent* Frame::OwnerLayoutObject() const {
if (!DeprecatedLocalOwner())
return nullptr;
return DeprecatedLocalOwner()->GetLayoutEmbeddedContent();
}
Settings* Frame::GetSettings() const {
if (GetPage())
return &GetPage()->GetSettings();
return nullptr;
}
WindowProxy* Frame::GetWindowProxy(DOMWrapperWorld& world) {
return window_proxy_manager_->GetWindowProxy(world);
}
void Frame::DidChangeVisibilityState() {
HeapVector<Member<Frame>> child_frames;
for (Frame* child = Tree().FirstChild(); child;
child = child->Tree().NextSibling())
child_frames.push_back(child);
for (wtf_size_t i = 0; i < child_frames.size(); ++i)
child_frames[i]->DidChangeVisibilityState();
}
void Frame::NotifyUserActivationInFrameTree(
mojom::blink::UserActivationNotificationType notification_type) {
for (Frame* node = this; node; node = node->Tree().Parent()) {
node->user_activation_state_.Activate(notification_type);
}
// See the "Same-origin Visibility" section in |UserActivationState| class
// doc.
auto* local_frame = DynamicTo<LocalFrame>(this);
if (local_frame &&
RuntimeEnabledFeatures::UserActivationSameOriginVisibilityEnabled()) {
const SecurityOrigin* security_origin =
local_frame->GetSecurityContext()->GetSecurityOrigin();
Frame& root = Tree().Top();
for (Frame* node = &root; node; node = node->Tree().TraverseNext(&root)) {
auto* local_frame_node = DynamicTo<LocalFrame>(node);
if (local_frame_node &&
security_origin->CanAccess(
local_frame_node->GetSecurityContext()->GetSecurityOrigin())) {
node->user_activation_state_.Activate(notification_type);
}
}
}
}
bool Frame::ConsumeTransientUserActivationInFrameTree() {
bool was_active = user_activation_state_.IsActive();
Frame& root = Tree().Top();
// To record UMA once per consumption, we arbitrarily picked the LocalFrame
// for root.
if (IsA<LocalFrame>(root))
root.user_activation_state_.RecordPreconsumptionUma();
for (Frame* node = &root; node; node = node->Tree().TraverseNext(&root))
node->user_activation_state_.ConsumeIfActive();
return was_active;
}
void Frame::ClearUserActivationInFrameTree() {
for (Frame* node = this; node; node = node->Tree().TraverseNext(this))
node->user_activation_state_.Clear();
}
void Frame::SetOwner(FrameOwner* owner) {
owner_ = owner;
UpdateInertIfPossible();
UpdateInheritedEffectiveTouchActionIfPossible();
}
bool Frame::IsAdSubframe() const {
return ad_frame_type_ != mojom::blink::AdFrameType::kNonAd;
}
bool Frame::IsAdRoot() const {
return ad_frame_type_ == mojom::blink::AdFrameType::kRootAd;
}
void Frame::UpdateInertIfPossible() {
if (auto* frame_owner_element =
DynamicTo<HTMLFrameOwnerElement>(owner_.Get())) {
if (frame_owner_element->IsInert())
SetIsInert(true);
}
}
void Frame::UpdateInheritedEffectiveTouchActionIfPossible() {
if (owner_) {
Frame* owner_frame = owner_->ContentFrame();
if (owner_frame) {
SetInheritedEffectiveTouchAction(
owner_frame->InheritedEffectiveTouchAction());
}
}
}
void Frame::UpdateVisibleToHitTesting() {
bool parent_visible_to_hit_testing = true;
if (auto* parent = Tree().Parent())
parent_visible_to_hit_testing = parent->GetVisibleToHitTesting();
bool self_visible_to_hit_testing = true;
if (auto* local_owner = DynamicTo<HTMLFrameOwnerElement>(owner_.Get())) {
self_visible_to_hit_testing =
local_owner->GetLayoutObject()
? local_owner->GetLayoutObject()->Style()->VisibleToHitTesting()
: true;
}
bool visible_to_hit_testing =
parent_visible_to_hit_testing && self_visible_to_hit_testing;
bool changed = visible_to_hit_testing_ != visible_to_hit_testing;
visible_to_hit_testing_ = visible_to_hit_testing;
if (changed)
DidChangeVisibleToHitTesting();
}
const std::string& Frame::ToTraceValue() {
// token's ToString() is latin1.
if (!trace_value_)
trace_value_ = devtools_frame_token_.ToString();
return trace_value_.value();
}
void Frame::SetEmbeddingToken(const base::UnguessableToken& embedding_token) {
embedding_token_ = embedding_token;
if (auto* owner = DynamicTo<HTMLFrameOwnerElement>(Owner())) {
// The embedding token is also used as the AXTreeID to reference the child
// accessibility tree for an HTMLFrameOwnerElement, so we need to notify the
// AXObjectCache object whenever this changes, to get the AX tree updated.
if (AXObjectCache* cache = owner->GetDocument().ExistingAXObjectCache())
cache->EmbeddingTokenChanged(owner);
}
}
Frame::Frame(FrameClient* client,
Page& page,
FrameOwner* owner,
Frame* parent,
Frame* previous_sibling,
FrameInsertType insert_type,
const FrameToken& frame_token,
WindowProxyManager* window_proxy_manager,
WindowAgentFactory* inheriting_agent_factory)
: tree_node_(this),
page_(&page),
owner_(owner),
ad_frame_type_(mojom::blink::AdFrameType::kNonAd),
client_(client),
window_proxy_manager_(window_proxy_manager),
parent_(parent),
navigation_rate_limiter_(*this),
window_agent_factory_(inheriting_agent_factory
? inheriting_agent_factory
: MakeGarbageCollected<WindowAgentFactory>()),
is_loading_(false),
devtools_frame_token_(client->GetDevToolsFrameToken()),
frame_token_(frame_token) {
InstanceCounters::IncrementCounter(InstanceCounters::kFrameCounter);
if (parent_ && insert_type == FrameInsertType::kInsertInConstructor) {
parent_->InsertAfter(this, previous_sibling);
} else {
CHECK(!previous_sibling);
}
}
void Frame::Initialize() {
// This frame must either be local or remote.
DCHECK_NE(IsLocalFrame(), IsRemoteFrame());
if (owner_)
owner_->SetContentFrame(*this);
else
page_->SetMainFrame(this);
}
void Frame::FocusImpl() {
// This uses FocusDocumentView rather than SetFocusedFrame so that blur
// events are properly dispatched on any currently focused elements.
// It is currently only used when replicating focus changes for
// cross-process frames so |notify_embedder| is false to avoid sending
// DidFocus updates from FocusController to the browser process,
// which already knows the latest focused frame.
GetPage()->GetFocusController().FocusDocumentView(
this, false /* notify_embedder */);
}
void Frame::ApplyFrameOwnerProperties(
mojom::blink::FrameOwnerPropertiesPtr properties) {
// At the moment, this is only used to replicate frame owner properties
// for frames with a remote owner.
auto* owner = To<RemoteFrameOwner>(Owner());
owner->SetBrowsingContextContainerName(properties->name);
owner->SetScrollbarMode(properties->scrollbar_mode);
owner->SetMarginWidth(properties->margin_width);
owner->SetMarginHeight(properties->margin_height);
owner->SetAllowFullscreen(properties->allow_fullscreen);
owner->SetAllowPaymentRequest(properties->allow_payment_request);
owner->SetIsDisplayNone(properties->is_display_none);
owner->SetColorScheme(properties->color_scheme);
owner->SetRequiredCsp(properties->required_csp);
}
void Frame::InsertAfter(Frame* new_child, Frame* previous_sibling) {
// Parent must match the one set in the constructor
CHECK_EQ(new_child->parent_, this);
Frame* next;
if (!previous_sibling) {
// Insert at the beginning if no previous sibling is specified.
next = first_child_;
first_child_ = new_child;
} else {
DCHECK_EQ(previous_sibling->parent_, this);
next = previous_sibling->next_sibling_;
previous_sibling->next_sibling_ = new_child;
new_child->previous_sibling_ = previous_sibling;
}
if (next) {
new_child->next_sibling_ = next;
next->previous_sibling_ = new_child;
} else {
last_child_ = new_child;
}
Tree().InvalidateScopedChildCount();
GetPage()->IncrementSubframeCount();
}
void Frame::ScheduleFormSubmission(FrameScheduler* scheduler,
FormSubmission* form_submission) {
form_submit_navigation_task_ = PostCancellableTask(
*scheduler->GetTaskRunner(TaskType::kDOMManipulation), FROM_HERE,
WTF::Bind(&FormSubmission::Navigate, WrapPersistent(form_submission)));
}
void Frame::CancelFormSubmission() {
form_submit_navigation_task_.Cancel();
}
bool Frame::IsFormSubmissionPending() {
return form_submit_navigation_task_.IsActive();
}
void Frame::FocusPage(LocalFrame* originating_frame) {
// We only allow focus to move to the |frame|'s page when the request comes
// from a user gesture. (See https://bugs.webkit.org/show_bug.cgi?id=33389.)
if (originating_frame &&
LocalFrame::HasTransientUserActivation(originating_frame)) {
// Ask the broswer process to focus the page.
GetPage()->GetChromeClient().FocusPage();
// Tattle on the frame that called |window.focus()|.
originating_frame->GetLocalFrameHostRemote().DidCallFocus();
}
// Always report the attempt to focus the page to the Chrome client for
// testing purposes (i.e. see WebViewTest.FocusExistingFrameOnNavigate()).
GetPage()->GetChromeClient().DidFocusPage();
}
void Frame::SetOpenerDoNotNotify(Frame* opener) {
if (opener_)
opener_->opened_frame_tracker_.Remove(this);
if (opener)
opener->opened_frame_tracker_.Add(this);
opener_ = opener;
}
Frame* Frame::Top() {
Frame* parent;
for (parent = this; parent->Parent(); parent = parent->Parent()) {
}
return parent;
}
bool Frame::Swap(WebFrame* new_web_frame) {
DCHECK(IsAttached());
using std::swap;
// Important: do not cache frame tree pointers (e.g. `previous_sibling_`,
// `next_sibling_`, `first_child_`, `last_child_`) here. It is possible for
// `Detach()` to mutate the frame tree and cause cached values to become
// invalid.
FrameOwner* owner = owner_;
FrameSwapScope frame_swap_scope(owner);
Page* page = page_;
AtomicString name = Tree().GetName();
// TODO(dcheng): This probably isn't necessary if we fix the ordering of
// events in `Swap()`, e.g. `Detach()` should not happen before
// `new_web_frame` is swapped in.
// If there is a local parent, it might incorrectly declare itself complete
// during the detach phase of this swap. Suppress its completion until swap is
// over, at which point its completion will be correctly dependent on its
// newly swapped-in child.
auto* parent_local_frame = DynamicTo<LocalFrame>(parent_.Get());
std::unique_ptr<IncrementLoadEventDelayCount> delay_parent_load =
parent_local_frame ? std::make_unique<IncrementLoadEventDelayCount>(
*parent_local_frame->GetDocument())
: nullptr;
// Unload the current Document in this frame: this calls unload handlers,
// detaches child frames, etc. Since this runs script, make sure this frame
// wasn't detached before continuing with the swap.
if (!Detach(FrameDetachType::kSwap)) {
// If the Swap() fails, it should be because the frame has been detached
// already. Otherwise the caller will not detach the frame when we return
// false, and the browser and renderer will disagree about the destruction
// of |this|.
CHECK(IsDetached());
return false;
}
// Otherwise, on a successful `Detach()` for swap, `this` is now detached--but
// crucially--still linked into the frame tree.
if (provisional_frame_) {
// `this` is about to be replaced, so if `provisional_frame_` is set, it
// should match `frame` which is being swapped in.
DCHECK_EQ(provisional_frame_, WebFrame::ToCoreFrame(*new_web_frame));
provisional_frame_ = nullptr;
}
v8::HandleScope handle_scope(v8::Isolate::GetCurrent());
WindowProxyManager::GlobalProxyVector global_proxies;
GetWindowProxyManager()->ReleaseGlobalProxies(global_proxies);
if (new_web_frame->IsWebRemoteFrame()) {
CHECK(!WebFrame::ToCoreFrame(*new_web_frame));
To<WebRemoteFrameImpl>(new_web_frame)
->InitializeCoreFrame(*page, owner, WebFrame::FromCoreFrame(parent_),
nullptr, FrameInsertType::kInsertLater, name,
&window_agent_factory());
// At this point, a `RemoteFrame` will have already updated
// `Page::MainFrame()` or `FrameOwner::ContentFrame()` as appropriate, and
// its `parent_` pointer is also populated.
} else {
// This is local frame created by `WebLocalFrame::CreateProvisional()`. The
// `parent` pointer was set when it was constructed; however,
// `Page::MainFrame()` or `FrameOwner::ContentFrame()` updates are deferred
// until after `new_frame` is linked into the frame tree.
// TODO(dcheng): Make local and remote frame updates more uniform.
}
Frame* new_frame = WebFrame::ToCoreFrame(*new_web_frame);
CHECK(new_frame);
// At this point, `new_frame->parent_` is correctly set, but `new_frame`'s
// sibling pointers are both still null and not yet updated. In addition, the
// parent frame (if any) still has not updated its `first_child_` and
// `last_child_` pointers.
CHECK_EQ(new_frame->parent_, parent_);
CHECK(!new_frame->previous_sibling_);
CHECK(!new_frame->next_sibling_);
if (previous_sibling_) {
previous_sibling_->next_sibling_ = new_frame;
}
swap(previous_sibling_, new_frame->previous_sibling_);
if (next_sibling_) {
next_sibling_->previous_sibling_ = new_frame;
}
swap(next_sibling_, new_frame->next_sibling_);
if (parent_) {
if (parent_->first_child_ == this) {
parent_->first_child_ = new_frame;
}
if (parent_->last_child_ == this) {
parent_->last_child_ = new_frame;
}
// Not strictly necessary, but keep state as self-consistent as possible.
parent_ = nullptr;
}
if (Frame* opener = opener_) {
SetOpenerDoNotNotify(nullptr);
new_frame->SetOpenerDoNotNotify(opener);
}
opened_frame_tracker_.TransferTo(new_frame);
// Clone the state of the current Frame into the one being swapped in.
if (auto* new_local_frame = DynamicTo<LocalFrame>(new_frame)) {
// A `LocalFrame` being swapped in is created provisionally, so
// `Page::MainFrame()` or `FrameOwner::ContentFrame()` needs to be updated
// to point to the newly swapped-in frame.
DCHECK_EQ(owner, new_local_frame->Owner());
if (owner) {
owner->SetContentFrame(*new_local_frame);
if (auto* frame_owner_element = DynamicTo<HTMLFrameOwnerElement>(owner)) {
frame_owner_element->SetEmbeddedContentView(new_local_frame->View());
}
} else {
Page* other_page = new_local_frame->GetPage();
other_page->SetMainFrame(new_local_frame);
// This trace event is needed to detect the main frame of the
// renderer in telemetry metrics. See crbug.com/692112#c11.
TRACE_EVENT_INSTANT1("loading", "markAsMainFrame",
TRACE_EVENT_SCOPE_THREAD, "frame",
::blink::ToTraceValue(new_local_frame));
}
}
new_frame->GetWindowProxyManager()->SetGlobalProxies(global_proxies);
if (auto* frame_owner_element = DynamicTo<HTMLFrameOwnerElement>(owner)) {
if (auto* new_local_frame = DynamicTo<LocalFrame>(new_frame)) {
probe::FrameOwnerContentUpdated(new_local_frame, frame_owner_element);
} else if (auto* old_local_frame = DynamicTo<LocalFrame>(this)) {
// TODO(dcheng): What is this probe for? Shouldn't it happen *before*
// detach?
probe::FrameOwnerContentUpdated(old_local_frame, frame_owner_element);
}
}
return true;
}
void Frame::RemoveChild(Frame* child) {
CHECK_EQ(child->parent_, this);
child->parent_ = nullptr;
if (first_child_ == child) {
first_child_ = child->next_sibling_;
} else {
CHECK(child->previous_sibling_)
<< " child " << child << " child->previous_sibling_ "
<< child->previous_sibling_;
child->previous_sibling_->next_sibling_ = child->next_sibling_;
}
if (last_child_ == child) {
last_child_ = child->previous_sibling_;
} else {
CHECK(child->next_sibling_);
child->next_sibling_->previous_sibling_ = child->previous_sibling_;
}
child->previous_sibling_ = child->next_sibling_ = nullptr;
Tree().InvalidateScopedChildCount();
GetPage()->DecrementSubframeCount();
}
void Frame::DetachFromParent() {
if (!Parent())
return;
// TODO(dcheng): This should really just check if there's a parent, and call
// RemoveChild() if so. Once provisional frames are removed, this check can be
// simplified to just check Parent(). See https://crbug.com/578349.
if (auto* local_frame = DynamicTo<LocalFrame>(this)) {
if (local_frame->IsProvisional()) {
return;
}
}
Parent()->RemoveChild(this);
}
STATIC_ASSERT_ENUM(FrameDetachType::kRemove,
WebRemoteFrameClient::DetachType::kRemove);
STATIC_ASSERT_ENUM(FrameDetachType::kSwap,
WebRemoteFrameClient::DetachType::kSwap);
} // namespace blink
|