| OLD | NEW |
| (Empty) |
| 1 /* | |
| 2 * Copyright (C) 2011 Apple Inc. All rights reserved. | |
| 3 * | |
| 4 * Redistribution and use in source and binary forms, with or without | |
| 5 * modification, are permitted provided that the following conditions | |
| 6 * are met: | |
| 7 * 1. Redistributions of source code must retain the above copyright | |
| 8 * notice, this list of conditions and the following disclaimer. | |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | |
| 10 * notice, this list of conditions and the following disclaimer in the | |
| 11 * documentation and/or other materials provided with the distribution. | |
| 12 * | |
| 13 * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' | |
| 14 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, | |
| 15 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | |
| 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS | |
| 17 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | |
| 18 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | |
| 19 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | |
| 20 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | |
| 21 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | |
| 22 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF | |
| 23 * THE POSSIBILITY OF SUCH DAMAGE. | |
| 24 */ | |
| 25 | |
| 26 #include "config.h" | |
| 27 #include "JavaScriptTest.h" | |
| 28 #include "PlatformUtilities.h" | |
| 29 #include "PlatformWebView.h" | |
| 30 | |
| 31 #include <WebKit2/WKContext.h> | |
| 32 #include <WebKit2/WKFrame.h> | |
| 33 #include <WebKit2/WKRetainPtr.h> | |
| 34 | |
| 35 namespace TestWebKitAPI { | |
| 36 | |
| 37 static bool loadedMainFrame; | |
| 38 static bool loadedIFrame; | |
| 39 static bool loadedAllFrames; | |
| 40 | |
| 41 static bool performedServerRedirect; | |
| 42 | |
| 43 static void didFinishLoadForFrame(WKPageRef, WKFrameRef frame, WKTypeRef, const
void*) | |
| 44 { | |
| 45 if (WKFrameIsMainFrame(frame)) | |
| 46 loadedMainFrame = true; | |
| 47 else | |
| 48 loadedIFrame = true; | |
| 49 | |
| 50 loadedAllFrames = loadedMainFrame && loadedIFrame; | |
| 51 } | |
| 52 | |
| 53 static void didPerformServerRedirect(WKContextRef context, WKPageRef page, WKURL
Ref sourceURL, WKURLRef destinationURL, WKFrameRef frame, const void *clientInfo
) | |
| 54 { | |
| 55 performedServerRedirect = true; | |
| 56 } | |
| 57 | |
| 58 TEST(WebKit2, LoadCanceledNoServerRedirectCallback) | |
| 59 { | |
| 60 WKRetainPtr<WKContextRef> context(AdoptWK, Util::createContextForInjectedBun
dleTest("LoadCanceledNoServerRedirectCallbackTest")); | |
| 61 | |
| 62 WKContextInjectedBundleClient injectedBundleClient; | |
| 63 memset(&injectedBundleClient, 0, sizeof(injectedBundleClient)); | |
| 64 injectedBundleClient.version = 0; | |
| 65 injectedBundleClient.clientInfo = 0; | |
| 66 WKContextSetInjectedBundleClient(context.get(), &injectedBundleClient); | |
| 67 | |
| 68 PlatformWebView webView(context.get()); | |
| 69 | |
| 70 WKPageLoaderClient loaderClient; | |
| 71 memset(&loaderClient, 0, sizeof(loaderClient)); | |
| 72 | |
| 73 loaderClient.version = 0; | |
| 74 loaderClient.didFinishLoadForFrame = didFinishLoadForFrame; | |
| 75 WKPageSetPageLoaderClient(webView.page(), &loaderClient); | |
| 76 | |
| 77 WKContextHistoryClient historyClient; | |
| 78 memset(&historyClient, 0, sizeof(historyClient)); | |
| 79 | |
| 80 historyClient.version = 0; | |
| 81 historyClient.didPerformServerRedirect = didPerformServerRedirect; | |
| 82 WKContextSetHistoryClient(context.get(), &historyClient); | |
| 83 | |
| 84 WKRetainPtr<WKURLRef> url(AdoptWK, Util::createURLForResource("simple-iframe
", "html")); | |
| 85 WKPageLoadURL(webView.page(), url.get()); | |
| 86 Util::run(&loadedAllFrames); | |
| 87 | |
| 88 // We shouldn't have performed a server redirect when the iframe load was ca
ncelled. | |
| 89 EXPECT_FALSE(performedServerRedirect); | |
| 90 } | |
| 91 | |
| 92 } // namespace TestWebKitAPI | |
| OLD | NEW |