OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:selectpopup
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/
PopupMenuStyle.h
38
enum PopupMenuType {
SelectPopup
, AutofillPopup };
40
PopupMenuStyle(const Color& foreground, const Color& background, const Font& font, bool visible, bool isDisplayNone, Length textIndent, TextDirection textDirection, bool hasTextDirectionOverride, BackgroundColorType backgroundColorType = DefaultBackgroundColor, PopupMenuType menuType =
SelectPopup
)
/external/chromium_org/third_party/WebKit/Source/web/tests/
PopupMenuTest.cpp
201
bool popupOpen() const { return m_webView->
selectPopup
(); }
209
EXPECT_TRUE(m_webView->
selectPopup
()->popupType() == PopupContainer::Select);
243
m_webView->
selectPopup
()->handleMouseDownEvent(mouseEvent);
249
m_webView->
selectPopup
()->handleMouseReleaseEvent(mouseEvent);
351
int menuItemHeight = m_webView->
selectPopup
()->menuItemHeight();
369
int menuItemHeight = m_webView->
selectPopup
()->menuItemHeight();
375
m_webView->
selectPopup
()->handleMouseMoveEvent(mouseEvent);
414
int menuItemHeight = m_webView->
selectPopup
()->menuItemHeight();
481
int menuItemHeight = m_webView->
selectPopup
()->menuItemHeight();
503
int menuItemHeight = m_webView->
selectPopup
()->menuItemHeight()
[
all
...]
/external/chromium_org/third_party/WebKit/Source/web/
WebViewImpl.cpp
517
RefPtr<WebCore::PopupContainer>
selectPopup
;
520
selectPopup
= m_selectPopup;
544
if (m_selectPopup && m_selectPopup ==
selectPopup
) {
716
RefPtr<WebCore::PopupContainer>
selectPopup
;
717
selectPopup
= m_selectPopup;
750
if (m_selectPopup && m_selectPopup ==
selectPopup
) {
[
all
...]
PopupListBox.cpp
144
bool isSelectPopup = m_popupClient->menuStyle().menuType() == PopupMenuStyle::
SelectPopup
;
WebViewImpl.h
497
WebCore::PopupContainer*
selectPopup
() const { return m_selectPopup.get(); }
[
all
...]
Completed in 69 milliseconds