Index: Source/core/accessibility/AXObjectCache.cpp |
diff --git a/Source/core/accessibility/AXObjectCache.cpp b/Source/core/accessibility/AXObjectCache.cpp |
index 6bd2698bd5e2515ac833157300fbbdaaa00d1c44..526c600c82591639c3b47ebf48f580a8d011918f 100644 |
--- a/Source/core/accessibility/AXObjectCache.cpp |
+++ b/Source/core/accessibility/AXObjectCache.cpp |
@@ -922,16 +922,16 @@ void AXObjectCache::postPlatformNotification(AccessibilityObject* obj, AXNotific |
Scrollbar* scrollBar = static_cast<AccessibilityScrollbar*>(obj)->scrollbar(); |
if (!scrollBar || !scrollBar->parent() || !scrollBar->parent()->isFrameView()) |
return; |
- Document* document = toFrameView(scrollBar->parent())->frame()->document(); |
+ Document* document = toFrameView(scrollBar->parent())->frame().document(); |
if (document != document->topDocument()) |
return; |
obj = get(document->renderer()); |
} |
- if (!obj || !obj->document() || !obj->documentFrameView() || !obj->documentFrameView()->frame() || !obj->documentFrameView()->frame()->page()) |
+ if (!obj || !obj->document() || !obj->documentFrameView() || !obj->documentFrameView()->frame().page()) |
return; |
- ChromeClient& client = obj->documentFrameView()->frame()->page()->chrome().client(); |
+ ChromeClient& client = obj->documentFrameView()->frame().page()->chrome().client(); |
if (notification == AXActiveDescendantChanged |
&& obj->document()->focusedElement() |