HomeSort by relevance Sort by last modified time
    Searched defs:OverflowEvent (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/WebCore/dom/
OverflowEvent.cpp 27 #include "OverflowEvent.h"
33 OverflowEvent::OverflowEvent()
41 OverflowEvent::OverflowEvent(bool horizontalOverflowChanged, bool horizontalOverflow, bool verticalOverflowChanged, bool verticalOverflow)
56 bool OverflowEvent::isOverflowEvent() const
61 void OverflowEvent::initOverflowEvent(unsigned short orient, bool horizontalOverflow, bool verticalOverflow)
OverflowEvent.h 33 class OverflowEvent : public Event {
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 46 milliseconds