blob: a0f9b55baf63998496bfc0634910336e4594afc4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#import "content/browser/web_contents/web_drag_source_mac.h"
#include "content/browser/web_contents/web_contents_impl.h"
#include "content/public/test/test_renderer_host.h"
#include "googleurl/src/gurl.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "webkit/glue/webdropdata.h"
namespace content {
typedef RenderViewHostTestHarness WebDragSourceMacTest;
TEST_F(WebDragSourceMacTest, DragInvalidlyEscapedBookmarklet) {
scoped_ptr<WebContents> contents(CreateTestWebContents());
scoped_nsobject<NSView> view(
[[NSView alloc] initWithFrame:NSMakeRect(0, 0, 10, 10)]);
scoped_ptr<WebDropData> dropData(new WebDropData);
dropData->url = GURL("javascript:%");
WebContentsImpl* contentsImpl = static_cast<WebContentsImpl*>(contents.get());
scoped_nsobject<WebDragSource> source(
[[WebDragSource alloc]
initWithContents:contentsImpl
view:view
dropData:dropData.get()
image:nil
offset:NSMakePoint(0, 0)
pasteboard:[NSPasteboard pasteboardWithUniqueName]
dragOperationMask:NSDragOperationCopy]);
// Test that this call doesn't throw any exceptions: http://crbug.com/128371
scoped_nsobject<NSPasteboard> pasteboard(
[NSPasteboard pasteboardWithUniqueName]);
[source lazyWriteToPasteboard:pasteboard forType:NSURLPboardType];
}
} // namespace content
|