Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1900)

Unified Diff: Source/core/rendering/RenderWidget.cpp

Issue 15674002: Fix issue where iframe content wasn't included in the accessibility tree. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/accessibility/AccessibilityRenderObject.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/RenderWidget.cpp
diff --git a/Source/core/rendering/RenderWidget.cpp b/Source/core/rendering/RenderWidget.cpp
index 3f1a80056d52d87391f3282ad1118e2bcc0e0902..cf2d6e94fe1c05810539a99fd7d4e934fc2c2189 100644
--- a/Source/core/rendering/RenderWidget.cpp
+++ b/Source/core/rendering/RenderWidget.cpp
@@ -202,6 +202,9 @@ void RenderWidget::setWidget(PassRefPtr<Widget> widget)
}
moveWidgetToParentSoon(m_widget.get(), m_frameView);
}
+
+ if (AXObjectCache* cache = document()->existingAXObjectCache())
+ cache->childrenChanged(this);
}
void RenderWidget::layout()
« no previous file with comments | « Source/core/accessibility/AccessibilityRenderObject.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698