Changeset 90238 in webkit
- Timestamp:
- Jul 1, 2011, 9:51:24 AM (15 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
-
LayoutTests/ChangeLog (modified) (1 diff)
-
LayoutTests/platform/wk2/Skipped (modified) (1 diff)
-
Source/WebKit2/ChangeLog (modified) (1 diff)
-
Source/WebKit2/WebProcess/WebCoreSupport/WebFrameLoaderClient.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r90236 r90238 1 2011-06-30 Brian Weinstein <bweinstein@apple.com> 2 3 Reviewed by Darin Adler. 4 5 WebKit2: DidFinishLoadForFrame is never called on iframes when loads are 6 cancelled by willSendRequest 7 https://bugs.webkit.org/show_bug.cgi?id=63753 8 9 Unskip WebKit2 tests that now pass. 10 11 * platform/wk2/Skipped: 12 1 13 2011-07-01 Adam Roben <aroben@apple.com> 2 14 -
trunk/LayoutTests/platform/wk2/Skipped
r90219 r90238 2049 2049 platform/mac/editing/pasteboard/text-precomposed.html 2050 2050 2051 # Unexplained failures after implementing willSendRequestReturnsNull2052 fast/loader/onload-willSendRequest-null-for-frame.html2053 plugins/plugin-document-willSendRequest-null.html2054 2055 2051 # An empty layer is missing. 2056 2052 platform/mac/fast/forms/input-appearance-spinbutton-up.html -
trunk/Source/WebKit2/ChangeLog
r90231 r90238 1 2011-06-30 Brian Weinstein <bweinstein@apple.com> 2 3 Reviewed by Darin Adler. 4 5 WebKit2: DidFinishLoadForFrame is never called on iframes when loads are 6 cancelled by willSendRequest 7 https://bugs.webkit.org/show_bug.cgi?id=63753 8 9 When deciding a policy for a null request, call the callback that was passed 10 to WebKit2 and say that we used the loader. 11 12 * WebProcess/WebCoreSupport/WebFrameLoaderClient.cpp: 13 (WebKit::WebFrameLoaderClient::dispatchDecidePolicyForResponse): 14 1 15 2011-07-01 Balazs Kelemen <kbalazs@webkit.org> 2 16 -
trunk/Source/WebKit2/WebProcess/WebCoreSupport/WebFrameLoaderClient.cpp
r90038 r90238 602 602 return; 603 603 604 if (!request.url().string()) 605 return; 604 if (!request.url().string()) { 605 (m_frame->coreFrame()->loader()->policyChecker()->*function)(PolicyUse); 606 return; 607 } 606 608 607 609 RefPtr<APIObject> userData;
Note:
See TracChangeset
for help on using the changeset viewer.