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

Unified Diff: chrome/renderer/extensions/automation_internal_custom_bindings.cc

Issue 2956053005: Keep track of fixed positioning in accessibility tree.
Patch Set: Created 3 years, 6 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: chrome/renderer/extensions/automation_internal_custom_bindings.cc
diff --git a/chrome/renderer/extensions/automation_internal_custom_bindings.cc b/chrome/renderer/extensions/automation_internal_custom_bindings.cc
index ce09ccf05b082f754c313902a1966c4ba8d95778..cf20b27718ef6409dca117a727b54ab273538473 100644
--- a/chrome/renderer/extensions/automation_internal_custom_bindings.cc
+++ b/chrome/renderer/extensions/automation_internal_custom_bindings.cc
@@ -1161,7 +1161,8 @@ void AutomationInternalCustomBindings::OnAccessibilityLocationChange(
return;
node->SetLocation(params.new_location.offset_container_id,
params.new_location.bounds,
- params.new_location.transform.get());
+ params.new_location.transform.get(),
+ params.new_location.is_fixed_positioned);
}
void AutomationInternalCustomBindings::OnNodeDataWillChange(

Powered by Google App Engine
This is Rietveld 408576698