Home
last modified time | relevance | path

Searched refs:horizontalOverflow (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/events/
DOverflowEvent.h37 bool horizontalOverflow; member
54 …eRawPtr<OverflowEvent> create(bool horizontalOverflowChanged, bool horizontalOverflow, bool vertic… in create() argument
56 …return adoptRefWillBeNoop(new OverflowEvent(horizontalOverflowChanged, horizontalOverflow, vertica… in create()
64 bool horizontalOverflow() const { return m_horizontalOverflow; } in horizontalOverflow() function
73 …OverflowEvent(bool horizontalOverflowChanged, bool horizontalOverflow, bool verticalOverflowChange…
DOverflowEvent.cpp33 , horizontalOverflow(false) in OverflowEventInit()
46 OverflowEvent::OverflowEvent(bool horizontalOverflowChanged, bool horizontalOverflow, bool vertical… in OverflowEvent() argument
48 , m_horizontalOverflow(horizontalOverflow) in OverflowEvent()
64 , m_horizontalOverflow(initializer.horizontalOverflow) in OverflowEvent()
DOverflowEvent.idl34 [InitializedByEventConstructor] readonly attribute boolean horizontalOverflow;
/external/chromium_org/third_party/WebKit/Source/core/frame/
DFrameView.cpp2099 void FrameView::updateOverflowStatus(bool horizontalOverflow, bool verticalOverflow) in updateOverflowStatus() argument
2105 m_horizontalOverflow = horizontalOverflow; in updateOverflowStatus()
2111 bool horizontalOverflowChanged = (m_horizontalOverflow != horizontalOverflow); in updateOverflowStatus()
2115 m_horizontalOverflow = horizontalOverflow; in updateOverflowStatus()
2118 …lowEvent> event = OverflowEvent::create(horizontalOverflowChanged, horizontalOverflow, verticalOve… in updateOverflowStatus()
DFrameView.h370 void updateOverflowStatus(bool horizontalOverflow, bool verticalOverflow);