| Index: sky/engine/core/css/FontFace.cpp
|
| diff --git a/sky/engine/core/css/FontFace.cpp b/sky/engine/core/css/FontFace.cpp
|
| index 27a40cef05dade0153e8d2808b670b1ef41e40fa..fed494e1ccba0fc4838878acdb048b433414d2fa 100644
|
| --- a/sky/engine/core/css/FontFace.cpp
|
| +++ b/sky/engine/core/css/FontFace.cpp
|
| @@ -126,15 +126,12 @@ PassRefPtr<FontFace> FontFace::create(Document* document, const StyleRuleFontFac
|
| FontFace::FontFace()
|
| : m_status(Unloaded)
|
| {
|
| - ScriptWrappable::init(this);
|
| }
|
|
|
| FontFace::FontFace(ExecutionContext* context, const AtomicString& family, const Dictionary& descriptors)
|
| : m_family(family)
|
| , m_status(Unloaded)
|
| {
|
| - ScriptWrappable::init(this);
|
| -
|
| Document* document = toDocument(context);
|
| String value;
|
| if (DictionaryHelper::get(descriptors, "style", value))
|
|
|