Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(878)

Side by Side Diff: Source/web/tests/PopupMenuTest.cpp

Issue 60033008: Remove forwarding headers in public/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/web/linux/WebFontRendering.cpp ('k') | Source/web/x11/WebScreenInfoFactory.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 23 matching lines...) Expand all
34 #include "PopupMenuChromium.h" 34 #include "PopupMenuChromium.h"
35 #include "RuntimeEnabledFeatures.h" 35 #include "RuntimeEnabledFeatures.h"
36 #include "URLTestHelpers.h" 36 #include "URLTestHelpers.h"
37 #include "WebDocument.h" 37 #include "WebDocument.h"
38 #include "WebElement.h" 38 #include "WebElement.h"
39 #include "WebFrame.h" 39 #include "WebFrame.h"
40 #include "WebFrameClient.h" 40 #include "WebFrameClient.h"
41 #include "WebFrameImpl.h" 41 #include "WebFrameImpl.h"
42 #include "WebInputEvent.h" 42 #include "WebInputEvent.h"
43 #include "WebPopupMenuImpl.h" 43 #include "WebPopupMenuImpl.h"
44 #include "WebScreenInfo.h"
45 #include "WebSettings.h" 44 #include "WebSettings.h"
46 #include "WebView.h" 45 #include "WebView.h"
47 #include "WebViewClient.h" 46 #include "WebViewClient.h"
48 #include "WebViewImpl.h" 47 #include "WebViewImpl.h"
49 #include "core/dom/Element.h" 48 #include "core/dom/Element.h"
49 #include "core/frame/FrameView.h"
50 #include "core/html/HTMLSelectElement.h" 50 #include "core/html/HTMLSelectElement.h"
51 #include "core/page/EventHandler.h" 51 #include "core/page/EventHandler.h"
52 #include "core/frame/FrameView.h"
53 #include "core/platform/PopupMenuClient.h" 52 #include "core/platform/PopupMenuClient.h"
54 #include "core/platform/chromium/KeyboardCodes.h" 53 #include "core/platform/chromium/KeyboardCodes.h"
55 #include "platform/PlatformMouseEvent.h" 54 #include "platform/PlatformMouseEvent.h"
56 #include "platform/PopupMenu.h" 55 #include "platform/PopupMenu.h"
57 #include "platform/graphics/Color.h" 56 #include "platform/graphics/Color.h"
58 #include "public/platform/Platform.h" 57 #include "public/platform/Platform.h"
58 #include "public/platform/WebScreenInfo.h"
59 #include "public/platform/WebString.h" 59 #include "public/platform/WebString.h"
60 #include "public/platform/WebUnitTestSupport.h"
61 #include "public/platform/WebURL.h" 60 #include "public/platform/WebURL.h"
62 #include "public/platform/WebURLRequest.h" 61 #include "public/platform/WebURLRequest.h"
63 #include "public/platform/WebURLResponse.h" 62 #include "public/platform/WebURLResponse.h"
63 #include "public/platform/WebUnitTestSupport.h"
64 #include "v8.h" 64 #include "v8.h"
65 #include <gtest/gtest.h> 65 #include <gtest/gtest.h>
66 66
67 using namespace WebCore; 67 using namespace WebCore;
68 using namespace blink; 68 using namespace blink;
69 using blink::URLTestHelpers::toKURL; 69 using blink::URLTestHelpers::toKURL;
70 70
71 namespace { 71 namespace {
72 72
73 class TestPopupMenuClient : public PopupMenuClient { 73 class TestPopupMenuClient : public PopupMenuClient {
(...skipping 430 matching lines...) Expand 10 before | Expand all | Expand 10 after
504 // menuItemHeight * 1.5 means the Y position on the item at index 1. 504 // menuItemHeight * 1.5 means the Y position on the item at index 1.
505 IntPoint row1Point(2, menuItemHeight * 1.5); 505 IntPoint row1Point(2, menuItemHeight * 1.5);
506 simulateLeftMouseDownEvent(row1Point); 506 simulateLeftMouseDownEvent(row1Point);
507 simulateLeftMouseUpEvent(row1Point); 507 simulateLeftMouseUpEvent(row1Point);
508 508
509 WebElement element = m_webView->mainFrame()->document().getElementById("mess age"); 509 WebElement element = m_webView->mainFrame()->document().getElementById("mess age");
510 EXPECT_STREQ("click", element.innerText().utf8().data()); 510 EXPECT_STREQ("click", element.innerText().utf8().data());
511 } 511 }
512 512
513 } // namespace 513 } // namespace
OLDNEW
« no previous file with comments | « Source/web/linux/WebFontRendering.cpp ('k') | Source/web/x11/WebScreenInfoFactory.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698