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 #import "config.h" | |
27 #import "PlatformUtilities.h" | |
28 #import "PlatformWebView.h" | |
29 #import "WTFStringUtilities.h" | |
30 | |
31 #import <WebKit/WebViewPrivate.h> | |
32 #import <WebKit/WebURLsWithTitles.h> | |
33 #import <WebKit/DOM.h> | |
34 #import <Carbon/Carbon.h> | |
35 #import <wtf/RetainPtr.h> | |
36 | |
37 | |
38 @interface ContextMenuCanCopyURLDelegate : NSObject { | |
39 } | |
40 @end | |
41 | |
42 static bool didFinishLoad; | |
43 | |
44 @implementation ContextMenuCanCopyURLDelegate | |
45 | |
46 - (void)webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame | |
47 { | |
48 didFinishLoad = true; | |
49 } | |
50 | |
51 @end | |
52 | |
53 namespace TestWebKitAPI { | |
54 | |
55 static void contextMenuCopyLink(WebView* webView, int itemIndex) | |
56 { | |
57 [[[[webView mainFrame] frameView] documentView] layout]; | |
58 | |
59 DOMDocument *document = [[webView mainFrame] DOMDocument]; | |
60 DOMElement *documentElement = [document documentElement]; | |
61 DOMHTMLAnchorElement *anchor = (DOMHTMLAnchorElement *)[[documentElement que
rySelectorAll:@"a"] item:itemIndex]; | |
62 | |
63 NSWindow *window = [webView window]; | |
64 NSEvent *event = [NSEvent mouseEventWithType:NSRightMouseDown | |
65 location:NSMakePoint(anchor.offsetLeft +
anchor.offsetWidth / 2, window.frame.size.height - (anchor.offsetTop + anchor.o
ffsetHeight / 2)) | |
66 modifierFlags:0 | |
67 timestamp:GetCurrentEventTime() | |
68 windowNumber:[window windowNumber] | |
69 context:[NSGraphicsContext currentConte
xt] | |
70 eventNumber:0 | |
71 clickCount:0 | |
72 pressure:0.0]; | |
73 | |
74 NSView *subView = [webView hitTest:[event locationInWindow]]; | |
75 if (!subView) | |
76 return; | |
77 | |
78 NSMenu* menu = [subView menuForEvent:event]; | |
79 for (int i = 0; i < [menu numberOfItems]; ++i) { | |
80 NSMenuItem* menuItem = [menu itemAtIndex:i]; | |
81 if ([menuItem tag] != WebMenuItemTagCopyLinkToClipboard) | |
82 continue; | |
83 | |
84 [menu performActionForItemAtIndex:i]; | |
85 } | |
86 } | |
87 | |
88 | |
89 TEST(WebKit1, ContextMenuCanCopyURL) | |
90 { | |
91 RetainPtr<WebView> webView(AdoptNS, [[WebView alloc] initWithFrame:NSMakeRec
t(0,0,800,600) frameName:nil groupName:nil]); | |
92 RetainPtr<NSWindow> window(AdoptNS, [[NSWindow alloc] initWithContentRect:NS
MakeRect(100, 100, 800, 600) styleMask:NSBorderlessWindowMask backing:NSBackingS
toreBuffered defer:YES]); | |
93 RetainPtr<ContextMenuCanCopyURLDelegate> delegate(AdoptNS, [[ContextMenuCanC
opyURLDelegate alloc] init]); | |
94 | |
95 [window.get().contentView addSubview:webView.get()]; | |
96 webView.get().frameLoadDelegate = delegate.get(); | |
97 | |
98 [webView.get().mainFrame loadRequest:[NSURLRequest requestWithURL:[[NSBundle
mainBundle] URLForResource:@"ContextMenuCanCopyURL" withExtension:@"html" subdi
rectory:@"TestWebKitAPI.resources"]]]; | |
99 | |
100 Util::run(&didFinishLoad); | |
101 | |
102 contextMenuCopyLink(webView.get(), 0); | |
103 | |
104 NSURL *url = [NSURL URLFromPasteboard:[NSPasteboard generalPasteboard]]; | |
105 EXPECT_EQ(String("http://www.webkit.org/"), String([url absoluteString])); | |
106 | |
107 contextMenuCopyLink(webView.get(), 1); | |
108 | |
109 NSArray * urls = [WebURLsWithTitles URLsFromPasteboard: [NSPasteboard genera
lPasteboard]]; | |
110 NSArray * titles = [WebURLsWithTitles titlesFromPasteboard: [NSPasteboard ge
neralPasteboard]]; | |
111 EXPECT_WK_STREQ(@"http://xn--ls8h.la/", [[urls objectAtIndex:0] absoluteStri
ng]); | |
112 EXPECT_WK_STREQ(@"http://💩.la", [titles objectAtIndex:0]); | |
113 } | |
114 | |
115 } // namespace TestWebKitAPI | |
OLD | NEW |