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 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130
|
/*
* Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved.
* Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
* Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmobile.com/)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of Apple Inc. ("Apple") nor the names of
* its contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "config.h"
#include "HistoryController.h"
#include "BackForwardCache.h"
#include "BackForwardController.h"
#include "CachedPage.h"
#include "DocumentInlines.h"
#include "DocumentLoader.h"
#include "FrameLoader.h"
#include "FrameLoaderStateMachine.h"
#include "FrameTree.h"
#include "HTMLObjectElement.h"
#include "HistoryItem.h"
#include "LocalFrame.h"
#include "LocalFrameLoaderClient.h"
#include "LocalFrameView.h"
#include "Logging.h"
#include "Navigation.h"
#include "Page.h"
#include "ScrollingCoordinator.h"
#include "SerializedScriptValue.h"
#include "SharedStringHash.h"
#include "ShouldTreatAsContinuingLoad.h"
#include "VisitedLinkStore.h"
#include <wtf/text/CString.h>
namespace WebCore {
static inline void addVisitedLink(Page& page, const URL& url)
{
page.protectedVisitedLinkStore()->addVisitedLink(page, computeSharedStringHash(url.string()));
}
HistoryController::HistoryController(LocalFrame& frame)
: m_frame(frame)
, m_frameLoadComplete(true)
, m_defersLoading(false)
{
}
HistoryController::~HistoryController() = default;
void HistoryController::ref() const
{
m_frame->ref();
}
void HistoryController::deref() const
{
m_frame->deref();
}
void HistoryController::saveScrollPositionAndViewStateToItem(HistoryItem* item)
{
Ref frame = m_frame.get();
RefPtr frameView = frame->view();
if (!item || !frameView)
return;
if (frame->document()->backForwardCacheState() != Document::NotInBackForwardCache) {
item->setScrollPosition(frameView->cachedScrollPosition());
#if PLATFORM(IOS_FAMILY)
item->setUnobscuredContentRect(frameView->cachedUnobscuredContentRect());
item->setExposedContentRect(frameView->cachedExposedContentRect());
#endif
} else {
item->setScrollPosition(frameView->scrollPosition());
#if PLATFORM(IOS_FAMILY)
item->setUnobscuredContentRect(frameView->unobscuredContentRect());
item->setExposedContentRect(frameView->exposedContentRect());
#endif
}
RefPtr page = frame->page();
if (page && frame->isMainFrame()) {
item->setPageScaleFactor(page->pageScaleFactor() / page->viewScaleFactor());
#if PLATFORM(IOS_FAMILY)
item->setObscuredInsets(page->obscuredInsets());
#endif
}
// FIXME: It would be great to work out a way to put this code in WebCore instead of calling through to the client.
frame->protectedLoader()->protectedClient()->saveViewStateToItem(*item);
// Notify clients that the HistoryItem has changed.
item->notifyChanged();
}
Ref<LocalFrame> HistoryController::protectedFrame() const
{
return m_frame.get();
}
/*
There is a race condition between the layout and load completion that affects restoring the scroll position.
We try to restore the scroll position at both the first layout and upon load completion.
1) If first layout happens before the load completes, we want to restore the scroll position then so that the
first time we draw the page is already scrolled to the right place, instead of starting at the top and later
jumping down. It is possible that the old scroll position is past the part of the doc laid out so far, in
which case the restore silent fails and we will fix it in when we try to restore on doc completion.
2) If the layout happens after the load completes, the attempt to restore at load completion time silently
fails. We then successfully restore it when the layout happens.
*/
void HistoryController::restoreScrollPositionAndViewState()
{
Ref frame = m_frame.get();
RefPtr currentItem = m_currentItem;
if (!currentItem || !frame->loader().stateMachine().committedFirstRealDocumentLoad())
return;
RefPtr view = frame->view();
// FIXME: There is some scrolling related work that needs to happen whenever a page goes into the
// back/forward cache and similar work that needs to occur when it comes out. This is where we do the work
// that needs to happen when we exit, and the work that needs to happen when we enter is in
// Document::setIsInBackForwardCache(bool). It would be nice if there was more symmetry in these spots.
// https://bugs.webkit.org/show_bug.cgi?id=98698
if (view) {
RefPtr page = frame->page();
if (page && frame->isMainFrame()) {
if (RefPtr scrollingCoordinator = page->scrollingCoordinator())
scrollingCoordinator->frameViewRootLayerDidChange(*view);
}
}
// FIXME: It would be great to work out a way to put this code in WebCore instead of calling
// through to the client.
frame->protectedLoader()->protectedClient()->restoreViewState();
#if !PLATFORM(IOS_FAMILY)
// Don't restore scroll point on iOS as LocalFrameLoaderClient::restoreViewState() does that.
if (view && !view->wasScrolledByUser()) {
view->scrollToFocusedElementImmediatelyIfNeeded();
RefPtr page = frame->page();
auto desiredScrollPosition = currentItem->shouldRestoreScrollPosition() ? currentItem->scrollPosition() : view->scrollPosition();
LOG(Scrolling, "HistoryController::restoreScrollPositionAndViewState scrolling to %d,%d", desiredScrollPosition.x(), desiredScrollPosition.y());
// FIXME: Page scale should be set in the UI process using WebPageProxy.
if (page && frame->isMainFrame() && currentItem->pageScaleFactor())
page->setPageScaleFactor(currentItem->pageScaleFactor() * page->viewScaleFactor(), desiredScrollPosition);
else
view->setScrollPosition(desiredScrollPosition);
// If the scroll position doesn't have to be clamped, consider it successfully restored.
if (frame->isMainFrame()) {
auto adjustedDesiredScrollPosition = view->adjustScrollPositionWithinRange(desiredScrollPosition);
if (desiredScrollPosition == adjustedDesiredScrollPosition)
frame->protectedLoader()->protectedClient()->didRestoreScrollPosition();
}
}
#endif
}
void HistoryController::updateBackForwardListForFragmentScroll()
{
updateBackForwardListClippedAtTarget(false);
}
void HistoryController::saveDocumentState()
{
// FIXME: Reading this bit of FrameLoader state here is unfortunate. I need to study
// this more to see if we can remove this dependency.
if (m_frame->loader().stateMachine().creatingInitialEmptyDocument())
return;
// For a standard page load, we will have a previous item set, which will be used to
// store the form state. However, in some cases we will have no previous item, and
// the current item is the right place to save the state. One example is when we
// detach a bunch of frames because we are navigating from a site with frames to
// another site. Another is when saving the frame state of a frame that is not the
// target of the current navigation (if we even decide to save with that granularity).
// Because of previousItem's "masking" of currentItem for this purpose, it's important
// that we keep track of the end of a page transition with m_frameLoadComplete. We
// leverage the checkLoadComplete recursion to achieve this goal.
RefPtr item = m_frameLoadComplete ? m_currentItem.get() : m_previousItem.get();
if (!item)
return;
ASSERT(m_frame->document());
Ref document = *m_frame->document();
if (item->isCurrentDocument(document) && document->hasLivingRenderTree()) {
if (RefPtr documentLoader = document->loader())
item->setShouldOpenExternalURLsPolicy(documentLoader->shouldOpenExternalURLsPolicyToPropagate());
LOG(Loading, "WebCoreLoading frame %" PRIu64 ": saving form state to %p", m_frame->frameID().object().toUInt64(), item.get());
item->setDocumentState(document->formElementsState());
}
}
// Walk the frame tree, telling all frames to save their form state into their current
// history item.
void HistoryController::saveDocumentAndScrollState()
{
Ref frame = m_frame.get();
for (RefPtr<Frame> descendant = frame.ptr(); descendant; descendant = descendant->tree().traverseNext(frame.ptr())) {
RefPtr localFrame = dynamicDowncast<LocalFrame>(*descendant);
if (!localFrame)
continue;
Ref history = localFrame->loader().history();
history->saveDocumentState();
history->saveScrollPositionAndViewStateToItem(history->protectedCurrentItem().get());
}
}
void HistoryController::restoreDocumentState()
{
switch (m_frame->loader().loadType()) {
case FrameLoadType::Reload:
case FrameLoadType::ReloadFromOrigin:
case FrameLoadType::ReloadExpiredOnly:
case FrameLoadType::Same:
case FrameLoadType::Replace:
// Not restoring the document state.
return;
case FrameLoadType::Back:
case FrameLoadType::Forward:
case FrameLoadType::IndexedBackForward:
case FrameLoadType::RedirectWithLockedBackForwardList:
case FrameLoadType::Standard:
break;
}
RefPtr currentItem = m_currentItem;
if (!currentItem)
return;
if (!m_frame->loader().requestedHistoryItem() || (m_frame->loader().requestedHistoryItem()->itemID() != currentItem->itemID()))
return;
RefPtr documentLoader = m_frame->loader().documentLoader();
if (documentLoader->isClientRedirect())
return;
documentLoader->setShouldOpenExternalURLsPolicy(currentItem->shouldOpenExternalURLsPolicy());
LOG(Loading, "WebCoreLoading frame %" PRIu64 ": restoring form state from %p", m_frame->frameID().object().toUInt64(), currentItem.get());
m_frame->protectedDocument()->setStateForNewFormElements(currentItem->documentState());
}
void HistoryController::invalidateCurrentItemCachedPage()
{
RefPtr currentItem = m_currentItem;
if (!currentItem)
return;
// When we are pre-commit, the currentItem is where any back/forward cache data resides.
auto cachedPage = BackForwardCache::singleton().take(*currentItem, m_frame->protectedPage().get());
if (!cachedPage)
return;
// FIXME: This is a grotesque hack to fix <rdar://problem/4059059> Crash in RenderFlow::detach
// Somehow the PageState object is not properly updated, and is holding onto a stale document.
// Both Xcode and FileMaker see this crash, Safari does not.
RefPtr cachedPageDocument = cachedPage->document();
ASSERT(cachedPageDocument == m_frame->document());
if (cachedPageDocument == m_frame->document()) {
cachedPageDocument->setBackForwardCacheState(Document::NotInBackForwardCache);
cachedPage->clear();
}
}
bool HistoryController::shouldStopLoadingForHistoryItem(HistoryItem& targetItem) const
{
RefPtr currentItem = m_currentItem;
if (!currentItem)
return false;
// Don't abort the current load if we're navigating within the current document.
if (currentItem->shouldDoSameDocumentNavigationTo(targetItem))
return false;
return true;
}
// Main funnel for navigating to a previous location (back/forward, non-search snap-back)
// This includes recursion to handle loading into framesets properly
void HistoryController::goToItem(HistoryItem& targetItem, FrameLoadType frameLoadType, ShouldTreatAsContinuingLoad shouldTreatAsContinuingLoad)
{
LOG(History, "HistoryController %p goToItem %p type=%d", this, &targetItem, static_cast<int>(frameLoadType));
RefPtr page = m_frame->page();
if (!page)
return;
auto finishGoToItem = [weakThis = WeakPtr { this }, frameLoadType, shouldTreatAsContinuingLoad, page, isInSwipeAnimation = page->isInSwipeAnimation(), targetItem = Ref { targetItem }] (ShouldGoToHistoryItem result) {
RefPtr protectedThis = weakThis.get();
if (!protectedThis)
return;
if (protectedThis->m_policyItem != targetItem.ptr())
return;
protectedThis->m_policyItem = nullptr;
if (result != ShouldGoToHistoryItem::Yes)
return;
if (protectedThis->m_defersLoading) {
protectedThis->m_deferredItem = targetItem.ptr();
protectedThis->m_deferredFrameLoadType = frameLoadType;
return;
}
page->setIsInSwipeAnimation(isInSwipeAnimation);
// Set the BF cursor before commit, which lets the user quickly click back/forward again.
// - plus, it only makes sense for the top level of the operation through the frame tree,
// as opposed to happening for some/one of the page commits that might happen soon.
CheckedRef backForward = page->backForward();
RefPtr currentItem = backForward->currentItem(protectedThis->m_frame->frameID());
backForward->setProvisionalItem(targetItem);
// First set the provisional item of any frames that are not actually navigating.
// This must be done before trying to navigate the desired frame, because some
// navigations can commit immediately (such as about:blank). We must be sure that
// all frames have provisional items set before the commit.
protectedThis->recursiveSetProvisionalItem(targetItem, currentItem.get(), ForNavigationAPI::No);
// Now that all other frames have provisional items, do the actual navigation.
protectedThis->recursiveGoToItem(targetItem, currentItem.get(), frameLoadType, shouldTreatAsContinuingLoad);
};
goToItemShared(targetItem, WTFMove(finishGoToItem));
}
struct HistoryController::FrameToNavigate {
const Ref<LocalFrame> frame;
const RefPtr<HistoryItem> fromItem;
const Ref<HistoryItem> toItem;
};
void HistoryController::goToItemForNavigationAPI(HistoryItem& targetItem, FrameLoadType frameLoadType, LocalFrame& triggeringFrame, NavigationAPIMethodTracker* tracker)
{
LOG(History, "HistoryController %p goToItemForNavigationAPI %p type=%d", this, &targetItem, static_cast<int>(frameLoadType));
Ref frame = m_frame.get();
RefPtr page = frame->page();
if (!page)
return;
auto finishGoToItem = [weakThis = WeakPtr { this }, frame, frameLoadType, page, isInSwipeAnimation = page->isInSwipeAnimation(), triggeringFrame = Ref { triggeringFrame }, targetItem = Ref { targetItem }, tracker = RefPtr { tracker }] (ShouldGoToHistoryItem result) {
RefPtr protectedThis = weakThis.get();
if (!protectedThis)
return;
if (protectedThis->m_policyItem != targetItem.ptr())
return;
protectedThis->m_policyItem = nullptr;
// For Navigation API navigations covered by HistoryController:goToItemForNavigationAPI, WebContent processes sometimes
// know about an item the UI process doesn't know about. In those cases, policy checks will happen elsewhere, and the
// traversal should occur
if (result == ShouldGoToHistoryItem::No)
return;
Vector<FrameToNavigate> framesToNavigate;
if (RefPtr fromItem = page->backForward().currentItem()) {
if (RefPtr localMainFrame = page->localMainFrame())
recursiveGatherFramesToNavigate(*localMainFrame, framesToNavigate, targetItem, fromItem.get());
}
page->setIsInSwipeAnimation(isInSwipeAnimation);
// Set the BF cursor before commit, which lets the user quickly click back/forward again.
// - plus, it only makes sense for the top level of the operation through the frame tree,
// as opposed to happening for some/one of the page commits that might happen soon
CheckedRef backForward = page->backForward();
RefPtr currentItem = backForward->currentItem(frame->frameID());
backForward->setProvisionalItem(targetItem);
// First set the provisional item of any frames that are not actually navigating.
// This must be done before trying to navigate the desired frame, because some
// navigations can commit immediately (such as about:blank). We must be sure that
// all frames have provisional items set before the commit.
protectedThis->recursiveSetProvisionalItem(targetItem, currentItem.get(), ForNavigationAPI::Yes);
for (auto& frameToNavigate : framesToNavigate) {
Ref abortHandler = frameToNavigate.frame->protectedWindow()->protectedNavigation()->registerAbortHandler();
frameToNavigate.frame->protectedLoader()->loadItem(frameToNavigate.toItem, frameToNavigate.fromItem.get(), frameLoadType, ShouldTreatAsContinuingLoad::No);
// If the navigation was aborted (by the JS called preventDefault() on the navigate event), then
// do not do any further navigations.
if (abortHandler->wasAborted()) {
triggeringFrame->protectedWindow()->protectedNavigation()->rejectFinishedPromise(tracker.get());
break;
}
}
};
goToItemShared(targetItem, WTFMove(finishGoToItem));
}
void HistoryController::goToItemShared(HistoryItem& targetItem, CompletionHandler<void(ShouldGoToHistoryItem)>&& completionHandler)
{
m_policyItem = &targetItem;
// Same document navigations must continue synchronously from here,
// therefore their policy checks must go down the synchronous path.
RefPtr current = currentItem();
bool sameDocumentNavigation = current && targetItem.shouldDoSameDocumentNavigationTo(*current);
Ref frame = m_frame.get();
if (sameDocumentNavigation || !frame->protectedLoader()->protectedClient()->supportsAsyncShouldGoToHistoryItem()) {
auto isSameDocumentNavigation = sameDocumentNavigation ? IsSameDocumentNavigation::Yes : IsSameDocumentNavigation::No;
auto result = frame->protectedLoader()->protectedClient()->shouldGoToHistoryItem(targetItem, isSameDocumentNavigation);
completionHandler(result);
return;
}
frame->protectedLoader()->protectedClient()->shouldGoToHistoryItemAsync(targetItem, WTFMove(completionHandler));
}
void HistoryController::clearPolicyItem()
{
m_policyItem = nullptr;
}
void HistoryController::recursiveGatherFramesToNavigate(LocalFrame& frame, Vector<FrameToNavigate>& framesToNavigate, HistoryItem& targetItem, HistoryItem* fromItem)
{
if (!itemsAreClones(targetItem, fromItem)) {
auto frameID = targetItem.frameID();
if (!frameID)
return;
framesToNavigate.append(FrameToNavigate { frame, fromItem, targetItem });
if (!fromItem || !fromItem->shouldDoSameDocumentNavigationTo(targetItem))
return;
}
ASSERT(fromItem);
for (Ref childItem : targetItem.children()) {
auto frameID = childItem->frameID();
if (!frameID)
continue;
RefPtr fromChildItem = fromItem->childItemWithFrameID(*frameID);
if (!fromChildItem)
continue;
RefPtr subframe = dynamicDowncast<LocalFrame>(frame.tree().descendantByFrameID(*frameID));
if (!subframe)
return;
recursiveGatherFramesToNavigate(*subframe, framesToNavigate, childItem, fromChildItem.get());
}
}
void HistoryController::setDefersLoading(bool defer)
{
m_defersLoading = defer;
if (defer)
return;
if (RefPtr deferredItem = m_deferredItem) {
goToItem(*deferredItem, m_deferredFrameLoadType, ShouldTreatAsContinuingLoad::No);
m_deferredItem = nullptr;
}
}
void HistoryController::updateForBackForwardNavigation()
{
LOG(History, "HistoryController %p updateForBackForwardNavigation: Updating History for back/forward navigation in frame %p (main frame %d) %s", this, m_frame.ptr(), m_frame->isMainFrame(), m_frame->loader().documentLoader() ? m_frame->loader().documentLoader()->url().string().utf8().data() : "");
// Must grab the current scroll position before disturbing it
if (!m_frameLoadComplete)
saveScrollPositionAndViewStateToItem(protectedPreviousItem().get());
// When traversing history, we may end up redirecting to a different URL
// this time (e.g., due to cookies). See http://webkit.org/b/49654.
updateCurrentItem();
}
void HistoryController::updateForReload()
{
LOG(History, "HistoryController %p updateForReload: Updating History for reload in frame %p (main frame %d) %s", this, m_frame.ptr(), m_frame->isMainFrame(), m_frame->loader().documentLoader() ? m_frame->loader().documentLoader()->url().string().utf8().data() : "");
if (RefPtr currentItem = m_currentItem) {
BackForwardCache::singleton().remove(*currentItem);
if (m_frame->loader().loadType() == FrameLoadType::Reload || m_frame->loader().loadType() == FrameLoadType::ReloadFromOrigin)
saveScrollPositionAndViewStateToItem(currentItem.get());
// Rebuild the history item tree when reloading as trying to re-associate everything is too error-prone.
currentItem->clearChildren();
}
// When reloading the page, we may end up redirecting to a different URL
// this time (e.g., due to cookies). See http://webkit.org/b/4072.
updateCurrentItem();
}
// There are 3 things you might think of as "history", all of which are handled by these functions.
//
// 1) Back/forward: The m_currentItem is part of this mechanism.
// 2) Global history: Handled by the client.
// 3) Visited links: Handled by the PageGroup.
void HistoryController::updateForStandardLoad(HistoryUpdateType updateType)
{
LOG(History, "HistoryController %p updateForStandardLoad: Updating History for standard load in frame %p (main frame %d) %s", this, m_frame.ptr(), m_frame->isMainFrame(), m_frame->loader().documentLoader()->url().string().ascii().data());
Ref frameLoader = m_frame->loader();
bool usesEphemeralSession = m_frame->page() ? m_frame->page()->usesEphemeralSession() : true;
const URL& historyURL = frameLoader->protectedDocumentLoader()->urlForHistory();
RefPtr documentLoader = frameLoader->documentLoader();
if (!frameLoader->documentLoader()->isClientRedirect()) {
if (!historyURL.isEmpty()) {
if (updateType != UpdateAllExceptBackForwardList)
updateBackForwardListClippedAtTarget(true);
if (!usesEphemeralSession) {
frameLoader->protectedClient()->updateGlobalHistory();
documentLoader->setDidCreateGlobalHistoryEntry(true);
if (documentLoader->unreachableURL().isEmpty())
frameLoader->protectedClient()->updateGlobalHistoryRedirectLinks();
}
}
} else {
// The client redirect replaces the current history item.
updateCurrentItem();
}
if (!historyURL.isEmpty() && !usesEphemeralSession) {
if (RefPtr page = m_frame->page())
addVisitedLink(*page, historyURL);
if (!documentLoader->didCreateGlobalHistoryEntry() && documentLoader->unreachableURL().isEmpty() && !m_frame->document()->url().isEmpty())
frameLoader->protectedClient()->updateGlobalHistoryRedirectLinks();
}
}
void HistoryController::updateForRedirectWithLockedBackForwardList()
{
LOG(History, "HistoryController %p updateForRedirectWithLockedBackForwardList: Updating History for redirect load in frame %p (main frame %d) %s", this, m_frame.ptr(), m_frame->isMainFrame(), m_frame->loader().documentLoader() ? m_frame->loader().documentLoader()->url().string().utf8().data() : "");
RefPtr documentLoader = m_frame->loader().documentLoader();
bool usesEphemeralSession = m_frame->page() ? m_frame->page()->usesEphemeralSession() : true;
auto historyURL = documentLoader ? documentLoader->urlForHistory() : URL { };
if (documentLoader && documentLoader->isClientRedirect()) {
if (!m_currentItem && !m_frame->tree().parent()) {
if (!historyURL.isEmpty()) {
updateBackForwardListClippedAtTarget(true);
if (!usesEphemeralSession) {
Ref frameLoader = m_frame->loader();
frameLoader->protectedClient()->updateGlobalHistory();
documentLoader->setDidCreateGlobalHistoryEntry(true);
if (documentLoader->unreachableURL().isEmpty())
frameLoader->protectedClient()->updateGlobalHistoryRedirectLinks();
}
}
}
// The client redirect replaces the current history item.
updateCurrentItem();
} else {
RefPtr page = m_frame->page();
RefPtr parentFrame = dynamicDowncast<LocalFrame>(m_frame->tree().parent());
if (page && parentFrame) {
if (RefPtr parentCurrentItem = parentFrame->loader().history().currentItem()) {
Ref item = createItem(page->historyItemClient(), parentCurrentItem->itemID());
parentCurrentItem->setChildItem(item.copyRef());
page->checkedBackForward()->setChildItem(parentCurrentItem->frameItemID(), WTFMove(item));
}
}
}
if (!historyURL.isEmpty() && !usesEphemeralSession) {
Ref frame = m_frame.get();
if (RefPtr page = frame->page())
addVisitedLink(*page, historyURL);
if (!documentLoader->didCreateGlobalHistoryEntry() && documentLoader->unreachableURL().isEmpty())
frame->protectedLoader()->protectedClient()->updateGlobalHistoryRedirectLinks();
}
}
void HistoryController::updateForClientRedirect()
{
LOG(History, "HistoryController %p updateForClientRedirect: Updating History for client redirect in frame %p (main frame %d) %s", this, m_frame.ptr(), m_frame->isMainFrame(), m_frame->loader().documentLoader() ? m_frame->loader().documentLoader()->url().string().utf8().data() : "");
// Clear out form data so we don't try to restore it into the incoming page. Must happen after
// webcore has closed the URL and saved away the form state.
if (RefPtr currentItem = m_currentItem) {
currentItem->clearDocumentState();
currentItem->clearScrollPosition();
}
bool usesEphemeralSession = m_frame->page() ? m_frame->page()->usesEphemeralSession() : true;
const URL& historyURL = m_frame->loader().protectedDocumentLoader()->urlForHistory();
if (!historyURL.isEmpty() && !usesEphemeralSession) {
if (RefPtr page = m_frame->page())
addVisitedLink(*page, historyURL);
}
}
void HistoryController::updateForCommit()
{
Ref frameLoader = m_frame->loader();
LOG(History, "HistoryController %p updateForCommit: Updating History for commit in frame %p (main frame %d) %s", this, m_frame.ptr(), m_frame->isMainFrame(), m_frame->loader().documentLoader() ? m_frame->loader().documentLoader()->url().string().utf8().data() : "");
FrameLoadType type = frameLoader->loadType();
if (isBackForwardLoadType(type)
|| isReplaceLoadTypeWithProvisionalItem(type)
|| (isReloadTypeWithProvisionalItem(type) && !frameLoader->provisionalDocumentLoader()->unreachableURL().isEmpty())) {
// Once committed, we want to use current item for saving DocState, and
// the provisional item for restoring state.
// Note previousItem must be set before we close the URL, which will
// happen when the data source is made non-provisional below
// FIXME: https://bugs.webkit.org/show_bug.cgi?id=146842
// We should always have a provisional item when committing, but we sometimes don't.
// Not having one leads to us not having a m_currentItem later, which is also a terrible known issue.
// We should get to the bottom of this.
ASSERT(m_provisionalItem);
if (RefPtr provisionalItem = m_provisionalItem) {
setCurrentItem(provisionalItem.releaseNonNull());
m_provisionalItem = nullptr;
}
// Tell all other frames in the tree to commit their provisional items and
// restore their scroll position. We'll avoid this frame (which has already
// committed) and its children (which will be replaced).
if (RefPtr localFrame = dynamicDowncast<LocalFrame>(m_frame->mainFrame())) {
if (localFrame->loader().protectedHistory()->isFrameLoadComplete())
localFrame->loader().protectedHistory()->recursiveUpdateForCommit();
}
}
}
bool HistoryController::isReplaceLoadTypeWithProvisionalItem(FrameLoadType type)
{
// Going back to an error page in a subframe can trigger a FrameLoadType::Replace
// while m_provisionalItem is set, so we need to commit it.
return type == FrameLoadType::Replace && m_provisionalItem;
}
bool HistoryController::isReloadTypeWithProvisionalItem(FrameLoadType type)
{
return (type == FrameLoadType::Reload || type == FrameLoadType::ReloadFromOrigin) && m_provisionalItem;
}
void HistoryController::recursiveUpdateForCommit()
{
// The frame that navigated will now have a null provisional item.
// Ignore it and its children.
if (!m_provisionalItem)
return;
// For each frame that already had the content the item requested (based on
// (a matching URL and frame tree snapshot), just restore the scroll position.
// Save form state (works from currentItem, since m_frameLoadComplete is true)
if (m_currentItem && itemsAreClones(*protectedCurrentItem(), protectedProvisionalItem().get())) {
ASSERT(m_frameLoadComplete);
saveDocumentState();
saveScrollPositionAndViewStateToItem(protectedCurrentItem().get());
if (RefPtr view = m_frame->view())
view->setLastUserScrollType(std::nullopt);
// Now commit the provisional item
if (RefPtr provisionalItem = m_provisionalItem) {
setCurrentItem(provisionalItem.releaseNonNull());
m_provisionalItem = nullptr;
}
// Restore form state (works from currentItem)
restoreDocumentState();
// Restore the scroll position (we choose to do this rather than going back to the anchor point)
restoreScrollPositionAndViewState();
}
// Iterate over the rest of the tree
for (RefPtr child = m_frame->tree().firstChild(); child; child = child->tree().nextSibling()) {
if (auto* localChild = dynamicDowncast<LocalFrame>(child.get()))
localChild->loader().protectedHistory()->recursiveUpdateForCommit();
}
}
void HistoryController::updateForSameDocumentNavigation()
{
Ref frame = m_frame.get();
if (frame->document()->url().isEmpty())
return;
RefPtr page = frame->page();
if (!page)
return;
m_policyItem = nullptr;
bool usesEphemeralSession = page->usesEphemeralSession();
if (!usesEphemeralSession)
addVisitedLink(*page, frame->document()->url());
if (RefPtr localFrame = dynamicDowncast<LocalFrame>(frame->mainFrame()))
localFrame->loader().protectedHistory()->recursiveUpdateForSameDocumentNavigation();
if (RefPtr currentItem = m_currentItem) {
currentItem->setURL(frame->document()->url());
if (!usesEphemeralSession)
frame->protectedLoader()->protectedClient()->updateGlobalHistory();
}
}
void HistoryController::recursiveUpdateForSameDocumentNavigation()
{
// The frame that navigated will now have a null provisional item.
// Ignore it and its children.
if (!m_provisionalItem)
return;
// The provisional item may represent a different pending navigation.
// Don't commit it if it isn't a same document navigation.
if (m_currentItem && !protectedCurrentItem()->shouldDoSameDocumentNavigationTo(*protectedProvisionalItem()))
return;
// Commit the provisional item.
if (RefPtr provisionalItem = m_provisionalItem) {
setCurrentItem(provisionalItem.releaseNonNull());
m_provisionalItem = nullptr;
}
// Iterate over the rest of the tree.
for (RefPtr child = m_frame->tree().firstChild(); child; child = child->tree().nextSibling()) {
if (auto* localChild = dynamicDowncast<LocalFrame>(child.get()))
localChild->loader().protectedHistory()->recursiveUpdateForSameDocumentNavigation();
}
}
void HistoryController::updateForFrameLoadCompleted()
{
// Even if already complete, we might have set a previous item on a frame that
// didn't do any data loading on the past transaction. Make sure to track that
// the load is complete so that we use the current item instead.
m_frameLoadComplete = true;
}
void HistoryController::setCurrentItem(Ref<HistoryItem>&& item)
{
m_frameLoadComplete = false;
m_previousItem = std::exchange(m_currentItem, WTFMove(item));
}
void HistoryController::setCurrentItemTitle(const StringWithDirection& title)
{
// FIXME: This ignores the title's direction.
if (RefPtr currentItem = m_currentItem)
currentItem->setTitle(title.string);
}
bool HistoryController::currentItemShouldBeReplaced() const
{
// From the HTML5 spec for location.assign():
// "If the browsing context's session history contains only one Document,
// and that was the about:blank Document created when the browsing context
// was created, then the navigation must be done with replacement enabled."
RefPtr currentItem = m_currentItem;
return currentItem && !m_previousItem && equalIgnoringASCIICase(currentItem->urlString(), aboutBlankURL().string());
}
void HistoryController::clearPreviousItem()
{
m_previousItem = nullptr;
for (RefPtr child = m_frame->tree().firstChild(); child; child = child->tree().nextSibling()) {
if (auto* localChild = dynamicDowncast<LocalFrame>(child.get()))
localChild->loader().protectedHistory()->clearPreviousItem();
}
}
void HistoryController::setProvisionalItem(RefPtr<HistoryItem>&& item)
{
m_provisionalItem = WTFMove(item);
}
void HistoryController::clearProvisionalItem()
{
RefPtr provisionalItem = m_provisionalItem;
if (!provisionalItem)
return;
if (RefPtr page = m_frame->page())
page->checkedBackForward()->clearProvisionalItem(*provisionalItem);
}
void HistoryController::initializeItem(HistoryItem& item, RefPtr<DocumentLoader> documentLoader)
{
ASSERT(documentLoader);
URL unreachableURL = documentLoader->unreachableURL();
URL url;
URL originalURL;
if (!unreachableURL.isEmpty()) {
url = unreachableURL;
originalURL = unreachableURL;
} else {
url = documentLoader->url();
originalURL = documentLoader->originalURL();
}
// Frames that have never successfully loaded any content
// may have no URL at all. Currently our history code can't
// deal with such things, so we nip that in the bud here.
// Later we may want to learn to live with nil for URL.
// See bug 3368236 and related bugs for more information.
if (url.isEmpty())
url = aboutBlankURL();
if (originalURL.isEmpty())
originalURL = aboutBlankURL();
StringWithDirection title = documentLoader->title();
item.setURL(url);
item.setTarget(m_frame->tree().uniqueName());
item.setFrameID(m_frame->frameID());
// FIXME: Should store the title direction as well.
item.setTitle(title.string);
item.setOriginalURLString(originalURL.string());
if (!unreachableURL.isEmpty() || documentLoader->response().httpStatusCode() >= 400)
item.setLastVisitWasFailure(true);
item.setShouldOpenExternalURLsPolicy(documentLoader->shouldOpenExternalURLsPolicyToPropagate());
// Save form state if this is a POST
item.setFormInfoFromRequest(documentLoader->request());
}
Ref<HistoryItem> HistoryController::createItem(HistoryItemClient& client, BackForwardItemIdentifier itemID)
{
Ref item = HistoryItem::create(client, { }, { }, { }, itemID);
initializeItem(item, m_frame->loader().protectedDocumentLoader());
// Set the item for which we will save document state
setCurrentItem(item.copyRef());
return item;
}
Ref<HistoryItem> HistoryController::createItemWithLoader(HistoryItemClient& client, DocumentLoader* documentLoader)
{
Ref item = HistoryItem::create(client);
initializeItem(item, documentLoader);
return item;
}
RefPtr<HistoryItem> HistoryController::createItemTree(LocalFrame& targetFrame, bool clipAtTarget, BackForwardItemIdentifier itemID)
{
RefPtr page = m_frame->page();
if (!page)
return nullptr;
return createItemTree(page->historyItemClient(), targetFrame, clipAtTarget, itemID);
}
Ref<HistoryItem> HistoryController::createItemTree(HistoryItemClient& client, LocalFrame& targetFrame, bool clipAtTarget, BackForwardItemIdentifier itemID)
{
Ref item = createItem(client, itemID);
if (!m_frameLoadComplete)
saveScrollPositionAndViewStateToItem(protectedPreviousItem().get());
if (!clipAtTarget || m_frame.ptr() != &targetFrame) {
// save frame state for items that aren't loading (khtml doesn't save those)
saveDocumentState();
// clipAtTarget is false for navigations within the same document, so
// we should copy the documentSequenceNumber over to the newly create
// item. Non-target items are just clones, and they should therefore
// preserve the same itemSequenceNumber.
if (RefPtr previousItem = m_previousItem) {
if (m_frame.ptr() != &targetFrame)
item->setItemSequenceNumber(previousItem->itemSequenceNumber());
item->setDocumentSequenceNumber(previousItem->documentSequenceNumber());
}
for (RefPtr child = m_frame->tree().firstLocalDescendant(); child; child = child->tree().nextLocalSibling())
item->addChildItem(child->loader().protectedHistory()->createItemTree(client, targetFrame, clipAtTarget, itemID));
}
if (m_frame.ptr() == &targetFrame)
item->setIsTargetItem(true);
return item;
}
// The general idea here is to traverse the frame tree and the item tree in parallel,
// tracking whether each frame already has the content the item requests. If there is
// a match, we set the provisional item and recurse. Otherwise we will reload that
// frame and all its kids in recursiveGoToItem.
void HistoryController::recursiveSetProvisionalItem(HistoryItem& item, HistoryItem* fromItem, ForNavigationAPI forNavigationAPI)
{
if (!itemsAreClones(item, fromItem)) {
if (forNavigationAPI == ForNavigationAPI::No || !fromItem || !fromItem->shouldDoSameDocumentNavigationTo(item))
return;
} else {
// Set provisional item, which will be committed in recursiveUpdateForCommit.
m_provisionalItem = &item;
}
for (Ref childItem : item.children()) {
auto frameID = childItem->frameID();
if (!frameID)
continue;
RefPtr fromChildItem = fromItem->childItemWithFrameID(*frameID);
if (!fromChildItem)
continue;
if (RefPtr childFrame = dynamicDowncast<LocalFrame>(m_frame->tree().descendantByFrameID(*frameID)))
childFrame->loader().protectedHistory()->recursiveSetProvisionalItem(childItem, fromChildItem.get());
}
}
// We now traverse the frame tree and item tree a second time, loading frames that
// do have the content the item requests.
void HistoryController::recursiveGoToItem(HistoryItem& item, HistoryItem* fromItem, FrameLoadType type, ShouldTreatAsContinuingLoad shouldTreatAsContinuingLoad)
{
if (!itemsAreClones(item, fromItem))
return m_frame->loader().loadItem(item, fromItem, type, shouldTreatAsContinuingLoad);
// Just iterate over the rest, looking for frames to navigate.
for (Ref childItem : item.children()) {
auto frameID = childItem->frameID();
if (!frameID)
continue;
RefPtr fromChildItem = fromItem->childItemWithFrameID(*frameID);
if (!fromChildItem)
continue;
if (RefPtr childFrame = dynamicDowncast<LocalFrame>(m_frame->tree().descendantByFrameID(*frameID)))
childFrame->loader().protectedHistory()->recursiveGoToItem(childItem, fromChildItem.get(), type, shouldTreatAsContinuingLoad);
}
}
// The following logic must be kept in sync with WebKit::WebBackForwardListItem::itemIsClone().
bool HistoryController::itemsAreClones(HistoryItem& item1, HistoryItem* item2)
{
// If the item we're going to is a clone of the item we're at, then we do
// not need to load it again. The current frame tree and the frame tree
// snapshot in the item have to match.
// Note: Some clients treat a navigation to the current history item as
// a reload. Thus, if item1 and item2 are the same, we need to create a
// new document and should not consider them clones.
// (See http://webkit.org/b/35532 for details.)
return item2
&& item1.itemID() != item2->itemID()
&& item1.itemSequenceNumber() == item2->itemSequenceNumber();
}
void HistoryController::updateBackForwardListClippedAtTarget(bool doClip)
{
// In the case of saving state about a page with frames, we store a tree of items that mirrors the frame tree.
// The item that was the target of the user's navigation is designated as the "targetItem".
// When this function is called with doClip=true we're able to create the whole tree except for the target's children,
// which will be loaded in the future. That part of the tree will be filled out as the child loads are committed.
Ref frame = m_frame.get();
RefPtr page = frame->page();
if (!page)
return;
if (frame->loader().protectedDocumentLoader()->urlForHistory().isEmpty())
return;
RefPtr item = frame->protectedLoader()->protectedClient()->createHistoryItemTree(doClip, BackForwardItemIdentifier::generate());
if (!item)
return;
LOG(History, "HistoryController %p updateBackForwardListClippedAtTarget: Adding backforward item %p in frame %p (main frame %d) %s", this, item.get(), m_frame.ptr(), m_frame->isMainFrame(), m_frame->loader().documentLoader()->url().string().utf8().data());
page->checkedBackForward()->addItem(item.releaseNonNull());
}
void HistoryController::updateCurrentItem()
{
RefPtr currentItem = m_currentItem;
if (!currentItem)
return;
RefPtr documentLoader = m_frame->loader().documentLoader();
if (!documentLoader || !documentLoader->unreachableURL().isEmpty())
return;
if (currentItem->url() != documentLoader->url()) {
bool isTargetItem = currentItem->isTargetItem();
auto uuidIdentifier = currentItem->uuidIdentifier();
bool sameOrigin = SecurityOrigin::create(currentItem->url())->isSameOriginAs(SecurityOrigin::create(documentLoader->url()));
currentItem->reset();
initializeItem(*currentItem, documentLoader);
if (sameOrigin)
currentItem->setUUIDIdentifier(uuidIdentifier);
currentItem->setIsTargetItem(isTargetItem);
} else {
// Even if the final URL didn't change, the form data may have changed.
currentItem->setFormInfoFromRequest(documentLoader->request());
}
}
void HistoryController::pushState(RefPtr<SerializedScriptValue>&& stateObject, const String& urlString)
{
RefPtr currentItem = m_currentItem;
if (!currentItem)
return;
Ref frame = m_frame.get();
RefPtr page = frame->page();
if (!page) {
ASSERT_NOT_REACHED();
return;
}
bool shouldRestoreScrollPosition = currentItem->shouldRestoreScrollPosition();
// Get a HistoryItem tree for the current frame tree.
Ref topItem = frame->rootFrame().loader().protectedHistory()->createItemTree(page->historyItemClient(), frame, false, BackForwardItemIdentifier::generate());
RefPtr document = frame->document();
if (document && !document->hasRecentUserInteractionForNavigationFromJS())
topItem->setWasCreatedByJSWithoutUserInteraction(true);
// Override data in the current item (created by createItemTree) to reflect
// the pushState() arguments.
currentItem = m_currentItem;
currentItem->setStateObject(WTFMove(stateObject));
currentItem->setURLString(urlString);
currentItem->setShouldRestoreScrollPosition(shouldRestoreScrollPosition);
LOG(History, "HistoryController %p pushState: Adding top item %p, setting url of current item %p to %s, scrollRestoration is %s", this, topItem.ptr(), m_currentItem.get(), urlString.ascii().data(), topItem->shouldRestoreScrollPosition() ? "auto" : "manual");
page->checkedBackForward()->addItem(WTFMove(topItem));
if (page->usesEphemeralSession())
return;
addVisitedLink(*page, URL({ }, urlString));
frame->protectedLoader()->protectedClient()->updateGlobalHistory();
if (document && document->settings().navigationAPIEnabled())
document->protectedWindow()->protectedNavigation()->updateForNavigation(*currentItem, NavigationNavigationType::Push);
}
void HistoryController::replaceState(RefPtr<SerializedScriptValue>&& stateObject, const String& urlString)
{
RefPtr currentItem = m_currentItem;
if (!currentItem)
return;
LOG(History, "HistoryController %p replaceState: Setting url of current item %p to %s scrollRestoration %s", this, currentItem.get(), urlString.ascii().data(), currentItem->shouldRestoreScrollPosition() ? "auto" : "manual");
if (!urlString.isEmpty())
currentItem->setURLString(urlString);
currentItem->setStateObject(WTFMove(stateObject));
currentItem->setFormData(nullptr);
currentItem->setFormContentType(String());
currentItem->notifyChanged();
Ref frame = m_frame.get();
RefPtr page = frame->page();
ASSERT(page);
if (page->usesEphemeralSession())
return;
addVisitedLink(*page, URL({ }, urlString));
frame->protectedLoader()->protectedClient()->updateGlobalHistory();
if (RefPtr document = frame->document(); document && document->settings().navigationAPIEnabled()) {
currentItem->setNavigationAPIStateObject(nullptr);
document->protectedWindow()->protectedNavigation()->updateForNavigation(*currentItem, NavigationNavigationType::Replace);
}
}
void HistoryController::replaceCurrentItem(RefPtr<HistoryItem>&& item)
{
if (!item)
return;
m_previousItem = nullptr;
if (m_provisionalItem)
m_provisionalItem = WTFMove(item);
else
m_currentItem = WTFMove(item);
}
RefPtr<HistoryItem> HistoryController::protectedCurrentItem() const
{
return m_currentItem;
}
RefPtr<HistoryItem> HistoryController::protectedPreviousItem() const
{
return m_previousItem;
}
RefPtr<HistoryItem> HistoryController::protectedProvisionalItem() const
{
return m_provisionalItem;
}
} // namespace WebCore
|