| Index: Source/core/accessibility/AXRenderObject.cpp
|
| diff --git a/Source/core/accessibility/AXRenderObject.cpp b/Source/core/accessibility/AXRenderObject.cpp
|
| index d5dc4bcbcc40179ba39e61f6bcb02007af7379c0..a5965f9cbe3ea391596512cc66420d26fba8a94d 100644
|
| --- a/Source/core/accessibility/AXRenderObject.cpp
|
| +++ b/Source/core/accessibility/AXRenderObject.cpp
|
| @@ -1493,8 +1493,8 @@
|
| if (isLoaded())
|
| return 1.0;
|
|
|
| - if (Page* page = m_renderer->document().page())
|
| - return page->progress().estimatedProgress();
|
| + if (LocalFrame* frame = m_renderer->document().frame())
|
| + return frame->loader().progress().estimatedProgress();
|
| return 0;
|
| }
|
|
|
|
|