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

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

Issue 1148813007: Move EventHandler from core/page/ to core/input (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 6 months 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
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 20 matching lines...) Expand all
31 #include "config.h" 31 #include "config.h"
32 #include "platform/PopupMenu.h" 32 #include "platform/PopupMenu.h"
33 33
34 #include "core/dom/Element.h" 34 #include "core/dom/Element.h"
35 #include "core/frame/FrameHost.h" 35 #include "core/frame/FrameHost.h"
36 #include "core/frame/FrameView.h" 36 #include "core/frame/FrameView.h"
37 #include "core/frame/PinchViewport.h" 37 #include "core/frame/PinchViewport.h"
38 #include "core/frame/Settings.h" 38 #include "core/frame/Settings.h"
39 #include "core/html/HTMLSelectElement.h" 39 #include "core/html/HTMLSelectElement.h"
40 #include "core/html/forms/PopupMenuClient.h" 40 #include "core/html/forms/PopupMenuClient.h"
41 #include "core/input/EventHandler.h"
41 #include "core/layout/LayoutMenuList.h" 42 #include "core/layout/LayoutMenuList.h"
42 #include "core/page/EventHandler.h"
43 #include "core/page/Page.h" 43 #include "core/page/Page.h"
44 #include "platform/KeyboardCodes.h" 44 #include "platform/KeyboardCodes.h"
45 #include "platform/PlatformMouseEvent.h" 45 #include "platform/PlatformMouseEvent.h"
46 #include "platform/RuntimeEnabledFeatures.h" 46 #include "platform/RuntimeEnabledFeatures.h"
47 #include "platform/graphics/Color.h" 47 #include "platform/graphics/Color.h"
48 #include "platform/scroll/ScrollbarTheme.h" 48 #include "platform/scroll/ScrollbarTheme.h"
49 #include "platform/testing/URLTestHelpers.h" 49 #include "platform/testing/URLTestHelpers.h"
50 #include "public/platform/Platform.h" 50 #include "public/platform/Platform.h"
51 #include "public/platform/WebScreenInfo.h" 51 #include "public/platform/WebScreenInfo.h"
52 #include "public/platform/WebString.h" 52 #include "public/platform/WebString.h"
(...skipping 579 matching lines...) Expand 10 before | Expand all | Expand 10 after
632 ASSERT(menuList); 632 ASSERT(menuList);
633 menuList->showPopup(); 633 menuList->showPopup();
634 ASSERT(popupOpen()); 634 ASSERT(popupOpen());
635 PopupListBox* listBox = webView()->selectPopup()->listBox(); 635 PopupListBox* listBox = webView()->selectPopup()->listBox();
636 int ltrWidth = listBox->getRowBaseWidth(0); 636 int ltrWidth = listBox->getRowBaseWidth(0);
637 int rtlWidth = listBox->getRowBaseWidth(1); 637 int rtlWidth = listBox->getRowBaseWidth(1);
638 EXPECT_LT(rtlWidth, ltrWidth); 638 EXPECT_LT(rtlWidth, ltrWidth);
639 } 639 }
640 640
641 } // namespace 641 } // namespace
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698