Searched defs:OverflowEvent (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/dom/
H A DOverflowEvent.cpp27 #include "OverflowEvent.h"
33 OverflowEvent::OverflowEvent() function in class:WebCore::OverflowEvent
41 OverflowEvent::OverflowEvent(bool horizontalOverflowChanged, bool horizontalOverflow, bool verticalOverflowChanged, bool verticalOverflow) function in class:WebCore::OverflowEvent
56 bool OverflowEvent::isOverflowEvent() const
61 void OverflowEvent::initOverflowEvent(unsigned short orient, bool horizontalOverflow, bool verticalOverflow)
H A DOverflowEvent.h33 class OverflowEvent : public Event { class in namespace:WebCore
41 static PassRefPtr<OverflowEvent> create()
43 return adoptRef(new OverflowEvent);
45 static PassRefPtr<OverflowEvent> create(bool horizontalOverflowChanged, bool horizontalOverflow, bool verticalOverflowChanged, bool verticalOverflow)
47 return adoptRef(new OverflowEvent(horizontalOverflowChanged, horizontalOverflow, verticalOverflowChanged, verticalOverflow));
59 OverflowEvent();
60 OverflowEvent(bool horizontalOverflowChanged, bool horizontalOverflow, bool verticalOverflowChanged, bool verticalOverflow);

Completed in 52 milliseconds