OLD | NEW |
| (Empty) |
1 /* | |
2 * Copyright (C) 2012 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 "WebKitAgnosticTest.h" | |
28 | |
29 #include <wtf/RetainPtr.h> | |
30 | |
31 @interface NSApplication (TestWebKitAPINSApplicationDetails) | |
32 - (void)_setCurrentEvent:(NSEvent *)event; | |
33 @end | |
34 | |
35 namespace TestWebKitAPI { | |
36 | |
37 class AcceptsFirstMouse : public WebKitAgnosticTest { | |
38 public: | |
39 template <typename View> void runTest(View); | |
40 | |
41 // WebKitAgnosticTest | |
42 virtual NSURL *url() const { return [[NSBundle mainBundle] URLForResource:@"
acceptsFirstMouse" withExtension:@"html" subdirectory:@"TestWebKitAPI.resources"
]; } | |
43 virtual void didLoadURL(WebView *webView) { runTest(webView); } | |
44 virtual void didLoadURL(WKView *wkView) { runTest(wkView); } | |
45 }; | |
46 | |
47 template <typename View> | |
48 void AcceptsFirstMouse::runTest(View view) | |
49 { | |
50 RetainPtr<NSWindow> window(AdoptNS, [[NSWindow alloc] initWithContentRect:vi
ew.frame styleMask:NSBorderlessWindowMask backing:NSBackingStoreBuffered defer:Y
ES]); | |
51 [[window.get() contentView] addSubview:view]; | |
52 | |
53 CGFloat viewHeight = view.bounds.size.height; | |
54 | |
55 NSPoint pointInsideSelection = NSMakePoint(50, viewHeight - 50); | |
56 NSEvent *mouseEventInsideSelection = [NSEvent mouseEventWithType:NSLeftMouse
Down location:pointInsideSelection modifierFlags:0 timestamp:0 windowNumber:[win
dow.get() windowNumber] context:nil eventNumber:0 clickCount:1 pressure:1]; | |
57 EXPECT_TRUE([[view hitTest:pointInsideSelection] acceptsFirstMouse:mouseEven
tInsideSelection]); | |
58 | |
59 NSPoint pointOutsideSelection = NSMakePoint(50, viewHeight - 150); | |
60 NSEvent *mouseEventOutsideSelection = [NSEvent mouseEventWithType:NSLeftMous
eDown location:pointOutsideSelection modifierFlags:0 timestamp:0 windowNumber:[w
indow.get() windowNumber] context:nil eventNumber:0 clickCount:1 pressure:1]; | |
61 EXPECT_FALSE([[view hitTest:pointInsideSelection] acceptsFirstMouse:mouseEve
ntOutsideSelection]); | |
62 } | |
63 | |
64 TEST_F(AcceptsFirstMouse, WebKit) | |
65 { | |
66 // Ensure that [NSApp currentEvent] is not a previously-simulated spacebar k
ey press, since this | |
67 // causes the scrollBy() in the test to perform a smooth scroll. | |
68 [NSApp _setCurrentEvent:nil]; | |
69 runWebKit1Test(); | |
70 } | |
71 | |
72 TEST_F(AcceptsFirstMouse, WebKit2) | |
73 { | |
74 runWebKit2Test(); | |
75 } | |
76 | |
77 } // namespace TestWebKitAPI | |
OLD | NEW |