Home | History | Annotate | Download | only in dom

Lines Matching defs:ErrorEvent

35 #include "ErrorEvent.h"
41 ErrorEvent::ErrorEvent()
45 ErrorEvent::ErrorEvent(const String& message, const String& fileName, unsigned lineNumber)
46 : Event(eventNames().errorEvent, false, true)
53 ErrorEvent::~ErrorEvent()
57 void ErrorEvent::initErrorEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& message, const String& fileName, unsigned lineNumber)
69 bool ErrorEvent::isErrorEvent() const