| Index: Source/core/dom/Document.cpp
|
| diff --git a/Source/core/dom/Document.cpp b/Source/core/dom/Document.cpp
|
| index 85cc254ebfd767776ee4879b903ed8441e0ea780..088d77dd37de8b6f688e5c16e9606735e4151621 100644
|
| --- a/Source/core/dom/Document.cpp
|
| +++ b/Source/core/dom/Document.cpp
|
| @@ -5317,6 +5317,14 @@ void Document::didAssociateFormControlsTimerFired(Timer<Document>* timer)
|
| m_associatedFormControls.clear();
|
| }
|
|
|
| +float Document::devicePixelRatio() const
|
| +{
|
| + float devicePixelRatio = 1.0;
|
| + if (m_frame)
|
| + devicePixelRatio = m_frame->devicePixelRatio();
|
| + return devicePixelRatio;
|
| +}
|
| +
|
| PassOwnPtr<LifecycleNotifier> Document::createLifecycleNotifier()
|
| {
|
| return DocumentLifecycleNotifier::create(this);
|
|
|