abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 1 | /* |
weinig@apple.com | e2b2876 | 2010-05-12 23:21:59 +0000 | [diff] [blame] | 2 | * Copyright (C) 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserved. |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 3 | * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) |
| 4 | * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmobile.com/) |
| 5 | * Copyright (C) 2009 Adam Barth. All rights reserved. |
| 6 | * |
| 7 | * Redistribution and use in source and binary forms, with or without |
| 8 | * modification, are permitted provided that the following conditions |
| 9 | * are met: |
| 10 | * |
| 11 | * 1. Redistributions of source code must retain the above copyright |
| 12 | * notice, this list of conditions and the following disclaimer. |
| 13 | * 2. Redistributions in binary form must reproduce the above copyright |
| 14 | * notice, this list of conditions and the following disclaimer in the |
| 15 | * documentation and/or other materials provided with the distribution. |
| 16 | * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of |
| 17 | * its contributors may be used to endorse or promote products derived |
| 18 | * from this software without specific prior written permission. |
| 19 | * |
| 20 | * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY |
| 21 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 22 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 23 | * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY |
| 24 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 25 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 26 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
| 27 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 28 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 29 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 30 | */ |
| 31 | |
| 32 | #include "config.h" |
abarth@webkit.org | 88b4e6b | 2010-10-04 22:09:57 +0000 | [diff] [blame] | 33 | #include "NavigationScheduler.h" |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 34 | |
darin@apple.com | e10e128 | 2010-10-30 00:44:33 +0000 | [diff] [blame] | 35 | #include "BackForwardController.h" |
inferno@chromium.org | 1930aab | 2010-09-17 16:36:53 +0000 | [diff] [blame] | 36 | #include "DOMWindow.h" |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 37 | #include "DocumentLoader.h" |
| 38 | #include "Event.h" |
| 39 | #include "FormState.h" |
dglazkov@chromium.org | 996fc22 | 2010-06-21 16:36:40 +0000 | [diff] [blame] | 40 | #include "FormSubmission.h" |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 41 | #include "Frame.h" |
| 42 | #include "FrameLoadRequest.h" |
| 43 | #include "FrameLoader.h" |
japhet@chromium.org | 61d4b9c | 2010-06-21 20:06:02 +0000 | [diff] [blame] | 44 | #include "FrameLoaderStateMachine.h" |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 45 | #include "HTMLFormElement.h" |
beidson@apple.com | 1117ef4 | 2009-12-12 01:34:17 +0000 | [diff] [blame] | 46 | #include "HTMLFrameOwnerElement.h" |
inferno@chromium.org | 1930aab | 2010-09-17 16:36:53 +0000 | [diff] [blame] | 47 | #include "HistoryItem.h" |
beidson@apple.com | 992d69a | 2009-11-03 21:06:09 +0000 | [diff] [blame] | 48 | #include "Page.h" |
abarth@webkit.org | c72185c | 2010-04-09 06:43:19 +0000 | [diff] [blame] | 49 | #include "UserGestureIndicator.h" |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 50 | #include <wtf/CurrentTime.h> |
| 51 | |
| 52 | namespace WebCore { |
| 53 | |
rniwa@webkit.org | cf46007 | 2011-01-08 02:15:10 +0000 | [diff] [blame] | 54 | unsigned NavigationDisablerForBeforeUnload::s_navigationDisableCount = 0; |
| 55 | |
ossy@webkit.org | 95c1bc4 | 2011-01-20 16:30:54 +0000 | [diff] [blame] | 56 | class ScheduledNavigation { |
| 57 | WTF_MAKE_NONCOPYABLE(ScheduledNavigation); WTF_MAKE_FAST_ALLOCATED; |
eric@webkit.org | 9b31e48 | 2010-03-31 23:22:23 +0000 | [diff] [blame] | 58 | public: |
abarth@webkit.org | 41c9344 | 2010-10-18 02:59:32 +0000 | [diff] [blame] | 59 | ScheduledNavigation(double delay, bool lockHistory, bool lockBackForwardList, bool wasDuringLoad, bool isLocationChange) |
eric@webkit.org | 9b31e48 | 2010-03-31 23:22:23 +0000 | [diff] [blame] | 60 | : m_delay(delay) |
| 61 | , m_lockHistory(lockHistory) |
| 62 | , m_lockBackForwardList(lockBackForwardList) |
| 63 | , m_wasDuringLoad(wasDuringLoad) |
weinig@apple.com | e2b2876 | 2010-05-12 23:21:59 +0000 | [diff] [blame] | 64 | , m_isLocationChange(isLocationChange) |
abarth@webkit.org | 41c9344 | 2010-10-18 02:59:32 +0000 | [diff] [blame] | 65 | , m_wasUserGesture(ScriptController::processingUserGesture()) |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 66 | { |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 67 | } |
eric@webkit.org | 9b31e48 | 2010-03-31 23:22:23 +0000 | [diff] [blame] | 68 | virtual ~ScheduledNavigation() { } |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 69 | |
eric@webkit.org | 9b31e48 | 2010-03-31 23:22:23 +0000 | [diff] [blame] | 70 | virtual void fire(Frame*) = 0; |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 71 | |
eric@webkit.org | 9b31e48 | 2010-03-31 23:22:23 +0000 | [diff] [blame] | 72 | virtual bool shouldStartTimer(Frame*) { return true; } |
abarth@webkit.org | 88b4e6b | 2010-10-04 22:09:57 +0000 | [diff] [blame] | 73 | virtual void didStartTimer(Frame*, Timer<NavigationScheduler>*) { } |
eric@webkit.org | 9b31e48 | 2010-03-31 23:22:23 +0000 | [diff] [blame] | 74 | virtual void didStopTimer(Frame*, bool /* newLoadInProgress */) { } |
| 75 | |
| 76 | double delay() const { return m_delay; } |
| 77 | bool lockHistory() const { return m_lockHistory; } |
| 78 | bool lockBackForwardList() const { return m_lockBackForwardList; } |
| 79 | bool wasDuringLoad() const { return m_wasDuringLoad; } |
weinig@apple.com | e2b2876 | 2010-05-12 23:21:59 +0000 | [diff] [blame] | 80 | bool isLocationChange() const { return m_isLocationChange; } |
inferno@chromium.org | 1930aab | 2010-09-17 16:36:53 +0000 | [diff] [blame] | 81 | bool wasUserGesture() const { return m_wasUserGesture; } |
eric@webkit.org | 9b31e48 | 2010-03-31 23:22:23 +0000 | [diff] [blame] | 82 | |
jnd@chromium.org | ae56316 | 2010-12-02 20:17:06 +0000 | [diff] [blame] | 83 | protected: |
| 84 | void clearUserGesture() { m_wasUserGesture = false; } |
| 85 | |
eric@webkit.org | 9b31e48 | 2010-03-31 23:22:23 +0000 | [diff] [blame] | 86 | private: |
| 87 | double m_delay; |
| 88 | bool m_lockHistory; |
| 89 | bool m_lockBackForwardList; |
| 90 | bool m_wasDuringLoad; |
weinig@apple.com | e2b2876 | 2010-05-12 23:21:59 +0000 | [diff] [blame] | 91 | bool m_isLocationChange; |
inferno@chromium.org | 1930aab | 2010-09-17 16:36:53 +0000 | [diff] [blame] | 92 | bool m_wasUserGesture; |
eric@webkit.org | 9b31e48 | 2010-03-31 23:22:23 +0000 | [diff] [blame] | 93 | }; |
| 94 | |
| 95 | class ScheduledURLNavigation : public ScheduledNavigation { |
darin@apple.com | 1cf3d56 | 2010-12-07 16:23:03 +0000 | [diff] [blame] | 96 | protected: |
| 97 | ScheduledURLNavigation(double delay, PassRefPtr<SecurityOrigin> securityOrigin, const String& url, const String& referrer, bool lockHistory, bool lockBackForwardList, bool duringLoad, bool isLocationChange) |
abarth@webkit.org | 41c9344 | 2010-10-18 02:59:32 +0000 | [diff] [blame] | 98 | : ScheduledNavigation(delay, lockHistory, lockBackForwardList, duringLoad, isLocationChange) |
darin@apple.com | 1cf3d56 | 2010-12-07 16:23:03 +0000 | [diff] [blame] | 99 | , m_securityOrigin(securityOrigin) |
eric@webkit.org | 9b31e48 | 2010-03-31 23:22:23 +0000 | [diff] [blame] | 100 | , m_url(url) |
| 101 | , m_referrer(referrer) |
eric@webkit.org | 9b31e48 | 2010-03-31 23:22:23 +0000 | [diff] [blame] | 102 | , m_haveToldClient(false) |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 103 | { |
| 104 | } |
| 105 | |
eric@webkit.org | 9b31e48 | 2010-03-31 23:22:23 +0000 | [diff] [blame] | 106 | virtual void fire(Frame* frame) |
| 107 | { |
abarth@webkit.org | 0dbfba2 | 2010-10-17 16:02:51 +0000 | [diff] [blame] | 108 | UserGestureIndicator gestureIndicator(wasUserGesture() ? DefinitelyProcessingUserGesture : DefinitelyNotProcessingUserGesture); |
darin@apple.com | 1cf3d56 | 2010-12-07 16:23:03 +0000 | [diff] [blame] | 109 | frame->loader()->changeLocation(m_securityOrigin, KURL(ParsedURLString, m_url), m_referrer, lockHistory(), lockBackForwardList(), false); |
eric@webkit.org | 9b31e48 | 2010-03-31 23:22:23 +0000 | [diff] [blame] | 110 | } |
| 111 | |
abarth@webkit.org | 88b4e6b | 2010-10-04 22:09:57 +0000 | [diff] [blame] | 112 | virtual void didStartTimer(Frame* frame, Timer<NavigationScheduler>* timer) |
eric@webkit.org | 9b31e48 | 2010-03-31 23:22:23 +0000 | [diff] [blame] | 113 | { |
| 114 | if (m_haveToldClient) |
| 115 | return; |
| 116 | m_haveToldClient = true; |
| 117 | frame->loader()->clientRedirected(KURL(ParsedURLString, m_url), delay(), currentTime() + timer->nextFireInterval(), lockBackForwardList()); |
| 118 | } |
| 119 | |
| 120 | virtual void didStopTimer(Frame* frame, bool newLoadInProgress) |
| 121 | { |
| 122 | if (!m_haveToldClient) |
| 123 | return; |
| 124 | frame->loader()->clientRedirectCancelledOrFinished(newLoadInProgress); |
| 125 | } |
| 126 | |
darin@apple.com | 1cf3d56 | 2010-12-07 16:23:03 +0000 | [diff] [blame] | 127 | SecurityOrigin* securityOrigin() const { return m_securityOrigin.get(); } |
eric@webkit.org | 9b31e48 | 2010-03-31 23:22:23 +0000 | [diff] [blame] | 128 | String url() const { return m_url; } |
| 129 | String referrer() const { return m_referrer; } |
eric@webkit.org | 9b31e48 | 2010-03-31 23:22:23 +0000 | [diff] [blame] | 130 | |
| 131 | private: |
darin@apple.com | 1cf3d56 | 2010-12-07 16:23:03 +0000 | [diff] [blame] | 132 | RefPtr<SecurityOrigin> m_securityOrigin; |
eric@webkit.org | 9b31e48 | 2010-03-31 23:22:23 +0000 | [diff] [blame] | 133 | String m_url; |
| 134 | String m_referrer; |
eric@webkit.org | 9b31e48 | 2010-03-31 23:22:23 +0000 | [diff] [blame] | 135 | bool m_haveToldClient; |
| 136 | }; |
| 137 | |
| 138 | class ScheduledRedirect : public ScheduledURLNavigation { |
| 139 | public: |
darin@apple.com | 1cf3d56 | 2010-12-07 16:23:03 +0000 | [diff] [blame] | 140 | ScheduledRedirect(double delay, PassRefPtr<SecurityOrigin> securityOrigin, const String& url, bool lockHistory, bool lockBackForwardList) |
| 141 | : ScheduledURLNavigation(delay, securityOrigin, url, String(), lockHistory, lockBackForwardList, false, false) |
abarth@webkit.org | 41c9344 | 2010-10-18 02:59:32 +0000 | [diff] [blame] | 142 | { |
jnd@chromium.org | ae56316 | 2010-12-02 20:17:06 +0000 | [diff] [blame] | 143 | clearUserGesture(); |
abarth@webkit.org | 41c9344 | 2010-10-18 02:59:32 +0000 | [diff] [blame] | 144 | } |
eric@webkit.org | 9b31e48 | 2010-03-31 23:22:23 +0000 | [diff] [blame] | 145 | |
eric@webkit.org | 9b31e48 | 2010-03-31 23:22:23 +0000 | [diff] [blame] | 146 | virtual bool shouldStartTimer(Frame* frame) { return frame->loader()->allAncestorsAreComplete(); } |
| 147 | }; |
| 148 | |
| 149 | class ScheduledLocationChange : public ScheduledURLNavigation { |
| 150 | public: |
darin@apple.com | 1cf3d56 | 2010-12-07 16:23:03 +0000 | [diff] [blame] | 151 | ScheduledLocationChange(PassRefPtr<SecurityOrigin> securityOrigin, const String& url, const String& referrer, bool lockHistory, bool lockBackForwardList, bool duringLoad) |
| 152 | : ScheduledURLNavigation(0.0, securityOrigin, url, referrer, lockHistory, lockBackForwardList, duringLoad, true) { } |
eric@webkit.org | 9b31e48 | 2010-03-31 23:22:23 +0000 | [diff] [blame] | 153 | }; |
| 154 | |
| 155 | class ScheduledRefresh : public ScheduledURLNavigation { |
| 156 | public: |
darin@apple.com | 1cf3d56 | 2010-12-07 16:23:03 +0000 | [diff] [blame] | 157 | ScheduledRefresh(PassRefPtr<SecurityOrigin> securityOrigin, const String& url, const String& referrer) |
| 158 | : ScheduledURLNavigation(0.0, securityOrigin, url, referrer, true, true, false, true) |
abarth@webkit.org | 41c9344 | 2010-10-18 02:59:32 +0000 | [diff] [blame] | 159 | { |
| 160 | } |
eric@webkit.org | 9b31e48 | 2010-03-31 23:22:23 +0000 | [diff] [blame] | 161 | |
| 162 | virtual void fire(Frame* frame) |
| 163 | { |
abarth@webkit.org | 0dbfba2 | 2010-10-17 16:02:51 +0000 | [diff] [blame] | 164 | UserGestureIndicator gestureIndicator(wasUserGesture() ? DefinitelyProcessingUserGesture : DefinitelyNotProcessingUserGesture); |
darin@apple.com | 1cf3d56 | 2010-12-07 16:23:03 +0000 | [diff] [blame] | 165 | frame->loader()->changeLocation(securityOrigin(), KURL(ParsedURLString, url()), referrer(), lockHistory(), lockBackForwardList(), true); |
eric@webkit.org | 9b31e48 | 2010-03-31 23:22:23 +0000 | [diff] [blame] | 166 | } |
| 167 | }; |
| 168 | |
| 169 | class ScheduledHistoryNavigation : public ScheduledNavigation { |
| 170 | public: |
abarth@webkit.org | 41c9344 | 2010-10-18 02:59:32 +0000 | [diff] [blame] | 171 | explicit ScheduledHistoryNavigation(int historySteps) |
| 172 | : ScheduledNavigation(0, false, false, false, true) |
| 173 | , m_historySteps(historySteps) |
| 174 | { |
| 175 | } |
eric@webkit.org | 9b31e48 | 2010-03-31 23:22:23 +0000 | [diff] [blame] | 176 | |
| 177 | virtual void fire(Frame* frame) |
| 178 | { |
inferno@chromium.org | 1930aab | 2010-09-17 16:36:53 +0000 | [diff] [blame] | 179 | UserGestureIndicator gestureIndicator(wasUserGesture() ? DefinitelyProcessingUserGesture : DefinitelyNotProcessingUserGesture); |
| 180 | |
eric@webkit.org | 9b31e48 | 2010-03-31 23:22:23 +0000 | [diff] [blame] | 181 | if (!m_historySteps) { |
| 182 | // Special case for go(0) from a frame -> reload only the frame |
inferno@chromium.org | 1930aab | 2010-09-17 16:36:53 +0000 | [diff] [blame] | 183 | // To follow Firefox and IE's behavior, history reload can only navigate the self frame. |
japhet@chromium.org | 5a15274 | 2011-01-28 01:22:16 +0000 | [diff] [blame] | 184 | frame->loader()->urlSelected(frame->document()->url(), "_self", 0, lockHistory(), lockBackForwardList(), SendReferrer); |
eric@webkit.org | 9b31e48 | 2010-03-31 23:22:23 +0000 | [diff] [blame] | 185 | return; |
| 186 | } |
| 187 | // go(i!=0) from a frame navigates into the history of the frame only, |
| 188 | // in both IE and NS (but not in Mozilla). We can't easily do that. |
darin@apple.com | e10e128 | 2010-10-30 00:44:33 +0000 | [diff] [blame] | 189 | frame->page()->backForward()->goBackOrForward(m_historySteps); |
eric@webkit.org | 9b31e48 | 2010-03-31 23:22:23 +0000 | [diff] [blame] | 190 | } |
| 191 | |
| 192 | private: |
| 193 | int m_historySteps; |
| 194 | }; |
| 195 | |
| 196 | class ScheduledFormSubmission : public ScheduledNavigation { |
| 197 | public: |
abarth@webkit.org | 41c9344 | 2010-10-18 02:59:32 +0000 | [diff] [blame] | 198 | ScheduledFormSubmission(PassRefPtr<FormSubmission> submission, bool lockBackForwardList, bool duringLoad) |
| 199 | : ScheduledNavigation(0, submission->lockHistory(), lockBackForwardList, duringLoad, true) |
dglazkov@chromium.org | 996fc22 | 2010-06-21 16:36:40 +0000 | [diff] [blame] | 200 | , m_submission(submission) |
commit-queue@webkit.org | 4cbfdfd | 2010-08-13 23:35:34 +0000 | [diff] [blame] | 201 | , m_haveToldClient(false) |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 202 | { |
dglazkov@chromium.org | 996fc22 | 2010-06-21 16:36:40 +0000 | [diff] [blame] | 203 | ASSERT(m_submission->state()); |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 204 | } |
eric@webkit.org | 9b31e48 | 2010-03-31 23:22:23 +0000 | [diff] [blame] | 205 | |
| 206 | virtual void fire(Frame* frame) |
| 207 | { |
inferno@chromium.org | 1930aab | 2010-09-17 16:36:53 +0000 | [diff] [blame] | 208 | UserGestureIndicator gestureIndicator(wasUserGesture() ? DefinitelyProcessingUserGesture : DefinitelyNotProcessingUserGesture); |
commit-queue@webkit.org | 572a9b6 | 2010-09-03 18:21:29 +0000 | [diff] [blame] | 209 | |
eric@webkit.org | 9b31e48 | 2010-03-31 23:22:23 +0000 | [diff] [blame] | 210 | // The submitForm function will find a target frame before using the redirection timer. |
| 211 | // Now that the timer has fired, we need to repeat the security check which normally is done when |
| 212 | // selecting a target, in case conditions have changed. Other code paths avoid this by targeting |
| 213 | // without leaving a time window. If we fail the check just silently drop the form submission. |
darin@apple.com | 1cf3d56 | 2010-12-07 16:23:03 +0000 | [diff] [blame] | 214 | Frame* requestingFrame = m_submission->state()->sourceFrame(); |
| 215 | if (!requestingFrame->loader()->shouldAllowNavigation(frame)) |
eric@webkit.org | 9b31e48 | 2010-03-31 23:22:23 +0000 | [diff] [blame] | 216 | return; |
darin@apple.com | 1cf3d56 | 2010-12-07 16:23:03 +0000 | [diff] [blame] | 217 | FrameLoadRequest frameRequest(requestingFrame->document()->securityOrigin()); |
dglazkov@chromium.org | 996fc22 | 2010-06-21 16:36:40 +0000 | [diff] [blame] | 218 | m_submission->populateFrameLoadRequest(frameRequest); |
| 219 | frame->loader()->loadFrameRequest(frameRequest, lockHistory(), lockBackForwardList(), m_submission->event(), m_submission->state(), SendReferrer); |
eric@webkit.org | 9b31e48 | 2010-03-31 23:22:23 +0000 | [diff] [blame] | 220 | } |
commit-queue@webkit.org | 4cbfdfd | 2010-08-13 23:35:34 +0000 | [diff] [blame] | 221 | |
abarth@webkit.org | 88b4e6b | 2010-10-04 22:09:57 +0000 | [diff] [blame] | 222 | virtual void didStartTimer(Frame* frame, Timer<NavigationScheduler>* timer) |
commit-queue@webkit.org | 4cbfdfd | 2010-08-13 23:35:34 +0000 | [diff] [blame] | 223 | { |
| 224 | if (m_haveToldClient) |
| 225 | return; |
| 226 | m_haveToldClient = true; |
| 227 | frame->loader()->clientRedirected(m_submission->requestURL(), delay(), currentTime() + timer->nextFireInterval(), lockBackForwardList()); |
| 228 | } |
eric@webkit.org | 9b31e48 | 2010-03-31 23:22:23 +0000 | [diff] [blame] | 229 | |
commit-queue@webkit.org | 4cbfdfd | 2010-08-13 23:35:34 +0000 | [diff] [blame] | 230 | virtual void didStopTimer(Frame* frame, bool newLoadInProgress) |
| 231 | { |
| 232 | if (!m_haveToldClient) |
| 233 | return; |
| 234 | frame->loader()->clientRedirectCancelledOrFinished(newLoadInProgress); |
| 235 | } |
eric@webkit.org | 9b31e48 | 2010-03-31 23:22:23 +0000 | [diff] [blame] | 236 | |
| 237 | private: |
dglazkov@chromium.org | 996fc22 | 2010-06-21 16:36:40 +0000 | [diff] [blame] | 238 | RefPtr<FormSubmission> m_submission; |
commit-queue@webkit.org | 4cbfdfd | 2010-08-13 23:35:34 +0000 | [diff] [blame] | 239 | bool m_haveToldClient; |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 240 | }; |
| 241 | |
abarth@webkit.org | 88b4e6b | 2010-10-04 22:09:57 +0000 | [diff] [blame] | 242 | NavigationScheduler::NavigationScheduler(Frame* frame) |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 243 | : m_frame(frame) |
abarth@webkit.org | 88b4e6b | 2010-10-04 22:09:57 +0000 | [diff] [blame] | 244 | , m_timer(this, &NavigationScheduler::timerFired) |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 245 | { |
| 246 | } |
| 247 | |
abarth@webkit.org | 88b4e6b | 2010-10-04 22:09:57 +0000 | [diff] [blame] | 248 | NavigationScheduler::~NavigationScheduler() |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 249 | { |
| 250 | } |
| 251 | |
abarth@webkit.org | 88b4e6b | 2010-10-04 22:09:57 +0000 | [diff] [blame] | 252 | bool NavigationScheduler::redirectScheduledDuringLoad() |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 253 | { |
eric@webkit.org | 9b31e48 | 2010-03-31 23:22:23 +0000 | [diff] [blame] | 254 | return m_redirect && m_redirect->wasDuringLoad(); |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 255 | } |
| 256 | |
abarth@webkit.org | 88b4e6b | 2010-10-04 22:09:57 +0000 | [diff] [blame] | 257 | bool NavigationScheduler::locationChangePending() |
weinig@apple.com | e2b2876 | 2010-05-12 23:21:59 +0000 | [diff] [blame] | 258 | { |
| 259 | return m_redirect && m_redirect->isLocationChange(); |
| 260 | } |
| 261 | |
abarth@webkit.org | 88b4e6b | 2010-10-04 22:09:57 +0000 | [diff] [blame] | 262 | void NavigationScheduler::clear() |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 263 | { |
| 264 | m_timer.stop(); |
eric@webkit.org | 9b31e48 | 2010-03-31 23:22:23 +0000 | [diff] [blame] | 265 | m_redirect.clear(); |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 266 | } |
| 267 | |
rniwa@webkit.org | cf46007 | 2011-01-08 02:15:10 +0000 | [diff] [blame] | 268 | inline bool NavigationScheduler::shouldScheduleNavigation() const |
| 269 | { |
| 270 | return m_frame->page(); |
| 271 | } |
| 272 | |
| 273 | inline bool NavigationScheduler::shouldScheduleNavigation(const String& url) const |
| 274 | { |
| 275 | return shouldScheduleNavigation() && (protocolIsJavaScript(url) || NavigationDisablerForBeforeUnload::isNavigationAllowed()); |
| 276 | } |
| 277 | |
abarth@webkit.org | 88b4e6b | 2010-10-04 22:09:57 +0000 | [diff] [blame] | 278 | void NavigationScheduler::scheduleRedirect(double delay, const String& url) |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 279 | { |
rniwa@webkit.org | cf46007 | 2011-01-08 02:15:10 +0000 | [diff] [blame] | 280 | if (!shouldScheduleNavigation(url)) |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 281 | return; |
eric@webkit.org | 9b31e48 | 2010-03-31 23:22:23 +0000 | [diff] [blame] | 282 | if (delay < 0 || delay > INT_MAX / 1000) |
| 283 | return; |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 284 | if (url.isEmpty()) |
| 285 | return; |
| 286 | |
commit-queue@webkit.org | 4cbfdfd | 2010-08-13 23:35:34 +0000 | [diff] [blame] | 287 | // We want a new back/forward list item if the refresh timeout is > 1 second. |
eric@webkit.org | 9b31e48 | 2010-03-31 23:22:23 +0000 | [diff] [blame] | 288 | if (!m_redirect || delay <= m_redirect->delay()) |
darin@apple.com | 1cf3d56 | 2010-12-07 16:23:03 +0000 | [diff] [blame] | 289 | schedule(adoptPtr(new ScheduledRedirect(delay, m_frame->document()->securityOrigin(), url, true, delay <= 1))); |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 290 | } |
| 291 | |
abarth@webkit.org | 41c9344 | 2010-10-18 02:59:32 +0000 | [diff] [blame] | 292 | bool NavigationScheduler::mustLockBackForwardList(Frame* targetFrame) |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 293 | { |
commit-queue@webkit.org | 2ca2f77 | 2010-08-17 23:40:00 +0000 | [diff] [blame] | 294 | // Non-user navigation before the page has finished firing onload should not create a new back/forward item. |
commit-queue@webkit.org | 4cbfdfd | 2010-08-13 23:35:34 +0000 | [diff] [blame] | 295 | // See https://webkit.org/b/42861 for the original motivation for this. |
abarth@webkit.org | 41c9344 | 2010-10-18 02:59:32 +0000 | [diff] [blame] | 296 | if (!ScriptController::processingUserGesture() && targetFrame->loader()->documentLoader() && !targetFrame->loader()->documentLoader()->wasOnloadHandled()) |
commit-queue@webkit.org | 4cbfdfd | 2010-08-13 23:35:34 +0000 | [diff] [blame] | 297 | return true; |
| 298 | |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 299 | // Navigation of a subframe during loading of an ancestor frame does not create a new back/forward item. |
| 300 | // The definition of "during load" is any time before all handlers for the load event have been run. |
| 301 | // See https://bugs.webkit.org/show_bug.cgi?id=14957 for the original motivation for this. |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 302 | for (Frame* ancestor = targetFrame->tree()->parent(); ancestor; ancestor = ancestor->tree()->parent()) { |
| 303 | Document* document = ancestor->document(); |
eric@webkit.org | 6cc1769 | 2009-11-09 20:04:49 +0000 | [diff] [blame] | 304 | if (!ancestor->loader()->isComplete() || (document && document->processingLoadEvent())) |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 305 | return true; |
| 306 | } |
| 307 | return false; |
| 308 | } |
| 309 | |
darin@apple.com | 1cf3d56 | 2010-12-07 16:23:03 +0000 | [diff] [blame] | 310 | void NavigationScheduler::scheduleLocationChange(PassRefPtr<SecurityOrigin> securityOrigin, const String& url, const String& referrer, bool lockHistory, bool lockBackForwardList) |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 311 | { |
rniwa@webkit.org | cf46007 | 2011-01-08 02:15:10 +0000 | [diff] [blame] | 312 | if (!shouldScheduleNavigation(url)) |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 313 | return; |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 314 | if (url.isEmpty()) |
| 315 | return; |
| 316 | |
abarth@webkit.org | 41c9344 | 2010-10-18 02:59:32 +0000 | [diff] [blame] | 317 | lockBackForwardList = lockBackForwardList || mustLockBackForwardList(m_frame); |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 318 | |
| 319 | FrameLoader* loader = m_frame->loader(); |
| 320 | |
| 321 | // If the URL we're going to navigate to is the same as the current one, except for the |
| 322 | // fragment part, we don't need to schedule the location change. |
| 323 | KURL parsedURL(ParsedURLString, url); |
japhet@chromium.org | 5a15274 | 2011-01-28 01:22:16 +0000 | [diff] [blame] | 324 | if (parsedURL.hasFragmentIdentifier() && equalIgnoringFragmentIdentifier(m_frame->document()->url(), parsedURL)) { |
darin@apple.com | 1cf3d56 | 2010-12-07 16:23:03 +0000 | [diff] [blame] | 325 | loader->changeLocation(securityOrigin, loader->completeURL(url), referrer, lockHistory, lockBackForwardList); |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 326 | return; |
| 327 | } |
| 328 | |
| 329 | // Handle a location change of a page with no document as a special case. |
| 330 | // This may happen when a frame changes the location of another frame. |
japhet@chromium.org | 61d4b9c | 2010-06-21 20:06:02 +0000 | [diff] [blame] | 331 | bool duringLoad = !loader->stateMachine()->committedFirstRealDocumentLoad(); |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 332 | |
darin@apple.com | 1cf3d56 | 2010-12-07 16:23:03 +0000 | [diff] [blame] | 333 | schedule(adoptPtr(new ScheduledLocationChange(securityOrigin, url, referrer, lockHistory, lockBackForwardList, duringLoad))); |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 334 | } |
| 335 | |
abarth@webkit.org | 88b4e6b | 2010-10-04 22:09:57 +0000 | [diff] [blame] | 336 | void NavigationScheduler::scheduleFormSubmission(PassRefPtr<FormSubmission> submission) |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 337 | { |
| 338 | ASSERT(m_frame->page()); |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 339 | |
| 340 | // FIXME: Do we need special handling for form submissions where the URL is the same |
| 341 | // as the current one except for the fragment part? See scheduleLocationChange above. |
| 342 | |
| 343 | // Handle a location change of a page with no document as a special case. |
| 344 | // This may happen when a frame changes the location of another frame. |
japhet@chromium.org | 61d4b9c | 2010-06-21 20:06:02 +0000 | [diff] [blame] | 345 | bool duringLoad = !m_frame->loader()->stateMachine()->committedFirstRealDocumentLoad(); |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 346 | |
beidson@apple.com | 1117ef4 | 2009-12-12 01:34:17 +0000 | [diff] [blame] | 347 | // If this is a child frame and the form submission was triggered by a script, lock the back/forward list |
| 348 | // to match IE and Opera. |
| 349 | // See https://bugs.webkit.org/show_bug.cgi?id=32383 for the original motivation for this. |
abarth@webkit.org | 41c9344 | 2010-10-18 02:59:32 +0000 | [diff] [blame] | 350 | bool lockBackForwardList = mustLockBackForwardList(m_frame) |
| 351 | || (submission->state()->formSubmissionTrigger() == SubmittedByJavaScript |
| 352 | && m_frame->tree()->parent() && !ScriptController::processingUserGesture()); |
beidson@apple.com | 1117ef4 | 2009-12-12 01:34:17 +0000 | [diff] [blame] | 353 | |
abarth@webkit.org | 41c9344 | 2010-10-18 02:59:32 +0000 | [diff] [blame] | 354 | schedule(adoptPtr(new ScheduledFormSubmission(submission, lockBackForwardList, duringLoad))); |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 355 | } |
| 356 | |
abarth@webkit.org | 41c9344 | 2010-10-18 02:59:32 +0000 | [diff] [blame] | 357 | void NavigationScheduler::scheduleRefresh() |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 358 | { |
rniwa@webkit.org | cf46007 | 2011-01-08 02:15:10 +0000 | [diff] [blame] | 359 | if (!shouldScheduleNavigation()) |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 360 | return; |
japhet@chromium.org | 5a15274 | 2011-01-28 01:22:16 +0000 | [diff] [blame] | 361 | const KURL& url = m_frame->document()->url(); |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 362 | if (url.isEmpty()) |
| 363 | return; |
| 364 | |
darin@apple.com | 1cf3d56 | 2010-12-07 16:23:03 +0000 | [diff] [blame] | 365 | schedule(adoptPtr(new ScheduledRefresh(m_frame->document()->securityOrigin(), url.string(), m_frame->loader()->outgoingReferrer()))); |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 366 | } |
| 367 | |
abarth@webkit.org | 88b4e6b | 2010-10-04 22:09:57 +0000 | [diff] [blame] | 368 | void NavigationScheduler::scheduleHistoryNavigation(int steps) |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 369 | { |
rniwa@webkit.org | cf46007 | 2011-01-08 02:15:10 +0000 | [diff] [blame] | 370 | if (!shouldScheduleNavigation()) |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 371 | return; |
| 372 | |
beidson@apple.com | aca909e | 2009-10-26 23:20:25 +0000 | [diff] [blame] | 373 | // Invalid history navigations (such as history.forward() during a new load) have the side effect of cancelling any scheduled |
| 374 | // redirects. We also avoid the possibility of cancelling the current load by avoiding the scheduled redirection altogether. |
mihaip@chromium.org | 5f3cb78 | 2010-11-02 21:23:43 +0000 | [diff] [blame] | 375 | BackForwardController* backForward = m_frame->page()->backForward(); |
| 376 | if (steps > backForward->forwardCount() || -steps > backForward->backCount()) { |
beidson@apple.com | bf1584a | 2010-01-22 04:22:02 +0000 | [diff] [blame] | 377 | cancel(); |
| 378 | return; |
| 379 | } |
inferno@chromium.org | 1930aab | 2010-09-17 16:36:53 +0000 | [diff] [blame] | 380 | |
beidson@apple.com | bf1584a | 2010-01-22 04:22:02 +0000 | [diff] [blame] | 381 | // In all other cases, schedule the history traversal to occur asynchronously. |
abarth@webkit.org | 41c9344 | 2010-10-18 02:59:32 +0000 | [diff] [blame] | 382 | schedule(adoptPtr(new ScheduledHistoryNavigation(steps))); |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 383 | } |
| 384 | |
abarth@webkit.org | 88b4e6b | 2010-10-04 22:09:57 +0000 | [diff] [blame] | 385 | void NavigationScheduler::timerFired(Timer<NavigationScheduler>*) |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 386 | { |
eric@webkit.org | 3c52102 | 2009-10-29 00:22:14 +0000 | [diff] [blame] | 387 | if (!m_frame->page()) |
| 388 | return; |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 389 | if (m_frame->page()->defersLoading()) |
| 390 | return; |
| 391 | |
eric@webkit.org | 9b31e48 | 2010-03-31 23:22:23 +0000 | [diff] [blame] | 392 | OwnPtr<ScheduledNavigation> redirect(m_redirect.release()); |
| 393 | redirect->fire(m_frame); |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 394 | } |
| 395 | |
abarth@webkit.org | 88b4e6b | 2010-10-04 22:09:57 +0000 | [diff] [blame] | 396 | void NavigationScheduler::schedule(PassOwnPtr<ScheduledNavigation> redirect) |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 397 | { |
| 398 | ASSERT(m_frame->page()); |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 399 | |
| 400 | // If a redirect was scheduled during a load, then stop the current load. |
| 401 | // Otherwise when the current load transitions from a provisional to a |
| 402 | // committed state, pending redirects may be cancelled. |
eric@webkit.org | 9b31e48 | 2010-03-31 23:22:23 +0000 | [diff] [blame] | 403 | if (redirect->wasDuringLoad()) { |
| 404 | if (DocumentLoader* provisionalDocumentLoader = m_frame->loader()->provisionalDocumentLoader()) |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 405 | provisionalDocumentLoader->stopLoading(); |
eric@webkit.org | 9b31e48 | 2010-03-31 23:22:23 +0000 | [diff] [blame] | 406 | m_frame->loader()->stopLoading(UnloadEventPolicyUnloadAndPageHide); |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 407 | } |
| 408 | |
| 409 | cancel(); |
eric@webkit.org | 9b31e48 | 2010-03-31 23:22:23 +0000 | [diff] [blame] | 410 | m_redirect = redirect; |
| 411 | |
| 412 | if (!m_frame->loader()->isComplete() && m_redirect->isLocationChange()) |
| 413 | m_frame->loader()->completed(); |
| 414 | |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 415 | startTimer(); |
| 416 | } |
| 417 | |
abarth@webkit.org | 88b4e6b | 2010-10-04 22:09:57 +0000 | [diff] [blame] | 418 | void NavigationScheduler::startTimer() |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 419 | { |
eric@webkit.org | 9b31e48 | 2010-03-31 23:22:23 +0000 | [diff] [blame] | 420 | if (!m_redirect) |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 421 | return; |
| 422 | |
| 423 | ASSERT(m_frame->page()); |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 424 | if (m_timer.isActive()) |
| 425 | return; |
eric@webkit.org | 9b31e48 | 2010-03-31 23:22:23 +0000 | [diff] [blame] | 426 | if (!m_redirect->shouldStartTimer(m_frame)) |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 427 | return; |
| 428 | |
eric@webkit.org | 9b31e48 | 2010-03-31 23:22:23 +0000 | [diff] [blame] | 429 | m_timer.startOneShot(m_redirect->delay()); |
| 430 | m_redirect->didStartTimer(m_frame, &m_timer); |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 431 | } |
| 432 | |
abarth@webkit.org | 88b4e6b | 2010-10-04 22:09:57 +0000 | [diff] [blame] | 433 | void NavigationScheduler::cancel(bool newLoadInProgress) |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 434 | { |
| 435 | m_timer.stop(); |
| 436 | |
eric@webkit.org | 9b31e48 | 2010-03-31 23:22:23 +0000 | [diff] [blame] | 437 | OwnPtr<ScheduledNavigation> redirect(m_redirect.release()); |
| 438 | if (redirect) |
| 439 | redirect->didStopTimer(m_frame, newLoadInProgress); |
abarth@webkit.org | 450089a | 2009-10-02 08:03:35 +0000 | [diff] [blame] | 440 | } |
| 441 | |
| 442 | } // namespace WebCore |