| OLD | NEW |
| 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 Loading... |
| 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/layout/LayoutMenuList.h" |
| 41 #include "core/page/EventHandler.h" | 42 #include "core/page/EventHandler.h" |
| 42 #include "core/page/Page.h" | 43 #include "core/page/Page.h" |
| 43 #include "core/rendering/RenderMenuList.h" | |
| 44 #include "core/testing/URLTestHelpers.h" | 44 #include "core/testing/URLTestHelpers.h" |
| 45 #include "platform/KeyboardCodes.h" | 45 #include "platform/KeyboardCodes.h" |
| 46 #include "platform/PlatformMouseEvent.h" | 46 #include "platform/PlatformMouseEvent.h" |
| 47 #include "platform/RuntimeEnabledFeatures.h" | 47 #include "platform/RuntimeEnabledFeatures.h" |
| 48 #include "platform/graphics/Color.h" | 48 #include "platform/graphics/Color.h" |
| 49 #include "platform/scroll/ScrollbarTheme.h" | 49 #include "platform/scroll/ScrollbarTheme.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" |
| 53 #include "public/platform/WebURL.h" | 53 #include "public/platform/WebURL.h" |
| (...skipping 566 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 620 #if OS(MACOSX) || OS(ANDROID) | 620 #if OS(MACOSX) || OS(ANDROID) |
| 621 TEST_F(SelectPopupMenuStyleTest, DISABLED_PopupListBoxRTLRowWidth) | 621 TEST_F(SelectPopupMenuStyleTest, DISABLED_PopupListBoxRTLRowWidth) |
| 622 #else | 622 #else |
| 623 TEST_F(SelectPopupMenuStyleTest, PopupListBoxRTLRowWidth) | 623 TEST_F(SelectPopupMenuStyleTest, PopupListBoxRTLRowWidth) |
| 624 #endif | 624 #endif |
| 625 { | 625 { |
| 626 RuntimeEnabledFeatures::setHTMLPopupMenuEnabled(false); | 626 RuntimeEnabledFeatures::setHTMLPopupMenuEnabled(false); |
| 627 registerMockedURLLoad("select_rtl_width.html"); | 627 registerMockedURLLoad("select_rtl_width.html"); |
| 628 loadFrame(mainFrame(), "select_rtl_width.html"); | 628 loadFrame(mainFrame(), "select_rtl_width.html"); |
| 629 HTMLSelectElement* select = toHTMLSelectElement(mainFrame()->frame()->docume
nt()->focusedElement()); | 629 HTMLSelectElement* select = toHTMLSelectElement(mainFrame()->frame()->docume
nt()->focusedElement()); |
| 630 RenderMenuList* menuList = toRenderMenuList(select->renderer()); | 630 LayoutMenuList* menuList = toLayoutMenuList(select->renderer()); |
| 631 ASSERT(menuList); | 631 ASSERT(menuList); |
| 632 menuList->showPopup(); | 632 menuList->showPopup(); |
| 633 ASSERT(popupOpen()); | 633 ASSERT(popupOpen()); |
| 634 PopupListBox* listBox = webView()->selectPopup()->listBox(); | 634 PopupListBox* listBox = webView()->selectPopup()->listBox(); |
| 635 int ltrWidth = listBox->getRowBaseWidth(0); | 635 int ltrWidth = listBox->getRowBaseWidth(0); |
| 636 int rtlWidth = listBox->getRowBaseWidth(1); | 636 int rtlWidth = listBox->getRowBaseWidth(1); |
| 637 EXPECT_LT(rtlWidth, ltrWidth); | 637 EXPECT_LT(rtlWidth, ltrWidth); |
| 638 } | 638 } |
| 639 | 639 |
| 640 } // namespace | 640 } // namespace |
| OLD | NEW |