Searched refs:CSSFontFaceLoadEvent (Results 1 - 4 of 4) sorted by relevance

/macosx-10.9.5/WebCore-7537.78.1/css/
H A DCSSFontFaceLoadEvent.cpp32 #include "CSSFontFaceLoadEvent.h"
38 CSSFontFaceLoadEvent::CSSFontFaceLoadEvent() function in class:WebCore::CSSFontFaceLoadEvent
42 CSSFontFaceLoadEvent::CSSFontFaceLoadEvent(const AtomicString& type, PassRefPtr<CSSFontFaceRule> fontface, PassRefPtr<DOMError> error) function in class:WebCore::CSSFontFaceLoadEvent
49 CSSFontFaceLoadEvent::CSSFontFaceLoadEvent(const AtomicString& type, const CSSFontFaceLoadEventInit& initializer) function in class:WebCore::CSSFontFaceLoadEvent
56 CSSFontFaceLoadEvent::~CSSFontFaceLoadEvent()
60 const AtomicString& CSSFontFaceLoadEvent
[all...]
H A DCSSFontFaceLoadEvent.h51 class CSSFontFaceLoadEvent : public Event { class in namespace:WebCore
53 static PassRefPtr<CSSFontFaceLoadEvent> create()
55 return adoptRef<CSSFontFaceLoadEvent>(new CSSFontFaceLoadEvent());
58 static PassRefPtr<CSSFontFaceLoadEvent> create(const AtomicString& type, const CSSFontFaceLoadEventInit& initializer)
60 return adoptRef<CSSFontFaceLoadEvent>(new CSSFontFaceLoadEvent(type, initializer));
63 static PassRefPtr<CSSFontFaceLoadEvent> createForFontFaceRule(const AtomicString& type, PassRefPtr<CSSFontFaceRule> rule)
65 return adoptRef<CSSFontFaceLoadEvent>(new CSSFontFaceLoadEvent(typ
[all...]
H A DCSSFontFaceLoadEvent.idl36 ] interface CSSFontFaceLoadEvent : Event {
H A DFontLoader.cpp31 #include "CSSFontFaceLoadEvent.h"
170 scheduleEvent(CSSFontFaceLoadEvent::createForFontFaceRule(eventNames().loadingEvent, rule));
171 scheduleEvent(CSSFontFaceLoadEvent::createForFontFaceRule(eventNames().loadstartEvent, rule));
177 scheduleEvent(CSSFontFaceLoadEvent::createForFontFaceRule(eventNames().loadEvent, rule));
181 m_loadingDoneEvent = CSSFontFaceLoadEvent::createForFontFaceRule(eventNames().loadingdoneEvent, rule);
190 scheduleEvent(CSSFontFaceLoadEvent::createForError(rule, DOMError::create(errorName)));
193 m_loadingDoneEvent = CSSFontFaceLoadEvent::createForFontFaceRule(eventNames().loadingdoneEvent, rule);

Completed in 102 milliseconds