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

Unified Diff: content/browser/accessibility/browser_accessibility_manager.cc

Issue 2956053005: Keep track of fixed positioning in accessibility tree.
Patch Set: GetSimpleRelativeBounds, add failing test for fixed with transform Created 3 years, 5 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
Index: content/browser/accessibility/browser_accessibility_manager.cc
diff --git a/content/browser/accessibility/browser_accessibility_manager.cc b/content/browser/accessibility/browser_accessibility_manager.cc
index 30099107b3367fd38b4c252f607dfce51932bd38..440670b185dbd04ff9fe318a4411e0f9561e1292 100644
--- a/content/browser/accessibility/browser_accessibility_manager.cc
+++ b/content/browser/accessibility/browser_accessibility_manager.cc
@@ -473,7 +473,8 @@ void BrowserAccessibilityManager::OnLocationChanges(
ui::AXNode* node = obj->node();
node->SetLocation(params[i].new_location.offset_container_id,
params[i].new_location.bounds,
- params[i].new_location.transform.get());
+ params[i].new_location.transform.get(),
+ params[i].new_location.is_fixed_positioned);
}
SendLocationChangeEvents(params);
}

Powered by Google App Engine
This is Rietveld 408576698