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

  /external/chromium_org/third_party/WebKit/Source/core/css/
FontFace.h 52 class FontFace : public RefCounted<FontFace> {
56 static PassRefPtr<FontFace> create(const AtomicString& family, const String& source, const Dictionary&, ExceptionState&);
57 static PassRefPtr<FontFace> create(const StyleRuleFontFace*);
59 ~FontFace();
90 FontFace(PassRefPtr<CSSValue> source);
112 typedef Vector<RefPtr<FontFace> > FontFaceArray;
FontFace.cpp 32 #include "core/css/FontFace.h"
68 void resolve(PassRefPtr<FontFace> fontFace)
71 switch (fontFace->loadStatus()) {
72 case FontFace::Loaded:
73 m_resolver->resolve(fontFace);
75 case FontFace::Error:
101 PassRefPtr<FontFace> FontFace::create(const AtomicString& family, const String& source, const Dictionary& descriptors, ExceptionState& exceptionState)
109 RefPtr<FontFace> fontFace = adoptRef<FontFace>(new FontFace(src))
    [all...]
StyleRule.h 46 FontFace,
59 bool isFontFaceRule() const { return type() == FontFace; }
284 DEFINE_STYLE_RULE_TYPE_CASTS(FontFace);

Completed in 373 milliseconds