| 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 namespace TestWebKitAPI { | |
| 32 | |
| 33 static bool didFinishLoad; | |
| 34 | |
| 35 static void didFinishLoadForFrame(WKPageRef, WKFrameRef, WKTypeRef, const void*) | |
| 36 { | |
| 37 didFinishLoad = true; | |
| 38 } | |
| 39 | |
| 40 static void processDidCrash(WKPageRef page, const void*) | |
| 41 { | |
| 42 WKPageReload(page); | |
| 43 } | |
| 44 | |
| 45 static void setPageLoaderClient(WKPageRef page) | |
| 46 { | |
| 47 WKPageLoaderClient loaderClient; | |
| 48 memset(&loaderClient, 0, sizeof(loaderClient)); | |
| 49 loaderClient.version = 0; | |
| 50 loaderClient.clientInfo = 0; | |
| 51 loaderClient.didFinishLoadForFrame = didFinishLoadForFrame; | |
| 52 loaderClient.processDidCrash = processDidCrash; | |
| 53 | |
| 54 WKPageSetPageLoaderClient(page, &loaderClient); | |
| 55 } | |
| 56 | |
| 57 #if PLATFORM(WIN) | |
| 58 TEST(WebKit2, DISABLED_MouseMoveAfterCrash) | |
| 59 #else | |
| 60 TEST(WebKit2, MouseMoveAfterCrash) | |
| 61 #endif | |
| 62 { | |
| 63 WKRetainPtr<WKContextRef> context = adoptWK(Util::createContextForInjectedBu
ndleTest("MouseMoveAfterCrashTest")); | |
| 64 | |
| 65 PlatformWebView webView(context.get()); | |
| 66 setPageLoaderClient(webView.page()); | |
| 67 | |
| 68 WKRetainPtr<WKURLRef> url(AdoptWK, Util::createURLForResource("mouse-move-li
stener", "html")); | |
| 69 WKPageLoadURL(webView.page(), url.get()); | |
| 70 Util::run(&didFinishLoad); | |
| 71 | |
| 72 didFinishLoad = false; | |
| 73 | |
| 74 WKContextPostMessageToInjectedBundle(context.get(), Util::toWK("Pause").get(
), 0); | |
| 75 | |
| 76 webView.simulateSpacebarKeyPress(); | |
| 77 | |
| 78 // Move the mouse once we are hung. | |
| 79 webView.simulateMouseMove(10, 10); | |
| 80 webView.simulateMouseMove(20, 20); | |
| 81 | |
| 82 // After moving the mouse (while the web process was hung on the Pause messa
ge), kill the web process. It is restarted in | |
| 83 // processDidCrash by reloading the page. | |
| 84 WKPageTerminate(webView.page()); | |
| 85 | |
| 86 // Wait until we load the page a second time (via reloading the page in proc
essDidCrash). | |
| 87 Util::run(&didFinishLoad); | |
| 88 | |
| 89 EXPECT_JS_FALSE(webView.page(), "didMoveMouse()"); | |
| 90 | |
| 91 // Once the page has reloaded, try moving the mouse to verify that we get mo
use move events. | |
| 92 webView.simulateMouseMove(10, 10); | |
| 93 webView.simulateMouseMove(20, 20); | |
| 94 | |
| 95 EXPECT_JS_TRUE(webView.page(), "didMoveMouse()"); | |
| 96 } | |
| 97 | |
| 98 } // namespace TestWebKitAPI | |
| OLD | NEW |