Home | History | Annotate | Download | only in dom

Lines Matching refs:errorEvent

33 #include "ErrorEvent.h"
39 ErrorEvent::ErrorEvent()
43 ErrorEvent::ErrorEvent(const String& message, const String& fileName, unsigned lineNumber)
44 : Event(eventNames().errorEvent, false, true)
51 ErrorEvent::~ErrorEvent()
55 void ErrorEvent::initErrorEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& message, const String& fileName, unsigned lineNumber)
67 bool ErrorEvent::isErrorEvent() const