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

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: 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 936d7db40d561be88fa6020085f5260c10f98d14..3e4aa0a20dab50c9993c91b941e3c3bca78417b9 100644
--- a/Source/core/rendering/RenderWidget.cpp
+++ b/Source/core/rendering/RenderWidget.cpp
@@ -204,6 +204,9 @@ void RenderWidget::setWidget(PassRefPtr<Widget> widget)
}
moveWidgetToParentSoon(m_widget.get(), m_frameView);
}
+
+ if (AXObjectCache* cache = document()->existingAXObjectCache())
aboxhall 2013/05/22 16:05:10 Can you help me understand under what circumstance
dmazzoni 2013/05/22 16:28:13 The cache shouldn't exist if accessibility is disa
+ 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