1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_H_
#define CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_H_
#include <stdint.h>
#include <map>
#include <memory>
#include <ostream>
#include <set>
#include <string>
#include <utility>
#include <vector>
#include "base/macros.h"
#include "base/optional.h"
#include "base/strings/string16.h"
#include "base/strings/string_split.h"
#include "build/build_config.h"
#include "content/browser/accessibility/accessibility_buildflags.h"
#include "content/browser/accessibility/browser_accessibility_position.h"
#include "content/common/content_export.h"
#include "third_party/blink/public/web/web_ax_enums.h"
#include "ui/accessibility/ax_enums.mojom-forward.h"
#include "ui/accessibility/ax_node.h"
#include "ui/accessibility/ax_node_data.h"
#include "ui/accessibility/ax_node_position.h"
#include "ui/accessibility/ax_range.h"
#include "ui/accessibility/platform/ax_platform_node.h"
#include "ui/accessibility/platform/ax_platform_node_delegate.h"
// Set PLATFORM_HAS_NATIVE_ACCESSIBILITY_IMPL if this platform has
// a platform-specific subclass of BrowserAccessibility and
// BrowserAccessibilityManager.
#undef PLATFORM_HAS_NATIVE_ACCESSIBILITY_IMPL
#if defined(OS_WIN)
#define PLATFORM_HAS_NATIVE_ACCESSIBILITY_IMPL 1
#endif
#if defined(OS_MACOSX)
#define PLATFORM_HAS_NATIVE_ACCESSIBILITY_IMPL 1
#endif
#if defined(OS_ANDROID) && !defined(USE_AURA)
#define PLATFORM_HAS_NATIVE_ACCESSIBILITY_IMPL 1
#endif
#if BUILDFLAG(USE_ATK)
#define PLATFORM_HAS_NATIVE_ACCESSIBILITY_IMPL 1
#endif
#if defined(OS_MACOSX) && __OBJC__
@class BrowserAccessibilityCocoa;
#endif
namespace content {
class BrowserAccessibilityManager;
////////////////////////////////////////////////////////////////////////////////
//
// BrowserAccessibility
//
// A BrowserAccessibility object represents one node in the accessibility
// tree on the browser side. It exactly corresponds to one WebAXObject from
// Blink. It's owned by a BrowserAccessibilityManager.
//
// There are subclasses of BrowserAccessibility for each platform where
// we implement native accessibility APIs. This base class is used occasionally
// for tests.
//
////////////////////////////////////////////////////////////////////////////////
class CONTENT_EXPORT BrowserAccessibility : public ui::AXPlatformNodeDelegate {
public:
// Creates a platform specific BrowserAccessibility. Ownership passes to the
// caller.
static BrowserAccessibility* Create();
// Returns |delegate| as a BrowserAccessibility object, if |delegate| is
// non-null and an object in the BrowserAccessibility class hierarchy.
static BrowserAccessibility* FromAXPlatformNodeDelegate(
ui::AXPlatformNodeDelegate* delegate);
BrowserAccessibility();
~BrowserAccessibility() override;
// Called only once, immediately after construction. The constructor doesn't
// take any arguments because in the Windows subclass we use a special
// function to construct a COM object.
virtual void Init(BrowserAccessibilityManager* manager, ui::AXNode* node);
// Called after the object is first initialized and again every time
// its data changes.
virtual void OnDataChanged() {}
// Called when the location changed.
virtual void OnLocationChanged() {}
// This is called when the platform-specific attributes for a node need
// to be recomputed, which may involve firing native events, due to a
// change other than an update from OnAccessibilityEvents.
virtual void UpdatePlatformAttributes() {}
// Return true if this object is equal to or a descendant of |ancestor|.
bool IsDescendantOf(const BrowserAccessibility* ancestor) const;
bool IsDocument() const;
bool IsIgnored() const;
// Returns true if this object is used only for representing text.
bool IsTextOnlyObject() const;
bool IsLineBreakObject() const;
// See AXNode::IsLeaf().
bool PlatformIsLeaf() const;
// See AXNode::IsLeafIncludingIgnored().
bool PlatformIsLeafIncludingIgnored() const;
// Returns true if this object can fire events.
virtual bool CanFireEvents() const;
// Return the AXPlatformNode corresponding to this node, if applicable
// on this platform.
virtual ui::AXPlatformNode* GetAXPlatformNode() const;
// Returns the number of children of this object, or 0 if PlatformIsLeaf()
// returns true.
virtual uint32_t PlatformChildCount() const;
// Return a pointer to the child at the given index, or NULL for an
// invalid index. Returns nullptr if PlatformIsLeaf() returns true.
virtual BrowserAccessibility* PlatformGetChild(uint32_t child_index) const;
BrowserAccessibility* PlatformGetParent() const;
virtual BrowserAccessibility* PlatformGetFirstChild() const;
virtual BrowserAccessibility* PlatformGetLastChild() const;
virtual BrowserAccessibility* PlatformGetNextSibling() const;
virtual BrowserAccessibility* PlatformGetPreviousSibling() const;
class CONTENT_EXPORT PlatformChildIterator : public ChildIterator {
public:
PlatformChildIterator(const BrowserAccessibility* parent,
BrowserAccessibility* child);
PlatformChildIterator(const PlatformChildIterator& it);
~PlatformChildIterator() override;
bool operator==(const ChildIterator& rhs) const override;
bool operator!=(const ChildIterator& rhs) const override;
void operator++() override;
void operator++(int) override;
void operator--() override;
void operator--(int) override;
gfx::NativeViewAccessible GetNativeViewAccessible() const override;
BrowserAccessibility* get() const;
int GetIndexInParent() const override;
BrowserAccessibility& operator*() const override;
BrowserAccessibility* operator->() const override;
private:
const BrowserAccessibility* parent_;
ui::AXNode::ChildIteratorBase<
BrowserAccessibility,
&BrowserAccessibility::PlatformGetNextSibling,
&BrowserAccessibility::PlatformGetPreviousSibling,
&BrowserAccessibility::PlatformGetFirstChild,
&BrowserAccessibility::PlatformGetLastChild>
platform_iterator;
};
PlatformChildIterator PlatformChildrenBegin() const;
PlatformChildIterator PlatformChildrenEnd() const;
// Return a pointer to the first ancestor that is a selection container
BrowserAccessibility* PlatformGetSelectionContainer() const;
// If this object is exposed to the platform, returns this object. Otherwise,
// returns the platform leaf under which this object is found.
BrowserAccessibility* PlatformGetClosestPlatformObject() const;
bool IsPreviousSiblingOnSameLine() const;
bool IsNextSiblingOnSameLine() const;
// Returns nullptr if there are no children.
BrowserAccessibility* PlatformDeepestFirstChild() const;
// Returns nullptr if there are no children.
BrowserAccessibility* PlatformDeepestLastChild() const;
// Returns nullptr if there are no children.
BrowserAccessibility* InternalDeepestFirstChild() const;
// Returns nullptr if there are no children.
BrowserAccessibility* InternalDeepestLastChild() const;
// Derivative utils for AXPlatformNodeDelegate::GetBoundsRect
gfx::Rect GetClippedScreenBoundsRect(
ui::AXOffscreenResult* offscreen_result = nullptr) const override;
gfx::Rect GetUnclippedScreenBoundsRect(
ui::AXOffscreenResult* offscreen_result = nullptr) const;
gfx::Rect GetClippedRootFrameBoundsRect(
ui::AXOffscreenResult* offscreen_result = nullptr) const;
gfx::Rect GetUnclippedRootFrameBoundsRect(
ui::AXOffscreenResult* offscreen_result = nullptr) const;
gfx::Rect GetClippedFrameBoundsRect(
ui::AXOffscreenResult* offscreen_result = nullptr) const;
// Derivative utils for AXPlatformNodeDelegate::GetHypertextRangeBoundsRect
gfx::Rect GetUnclippedRootFrameHypertextRangeBoundsRect(
const int start_offset,
const int end_offset,
ui::AXOffscreenResult* offscreen_result = nullptr) const;
// Derivative utils for AXPlatformNodeDelegate::GetInnerTextRangeBoundsRect
gfx::Rect GetUnclippedScreenInnerTextRangeBoundsRect(
const int start_offset,
const int end_offset,
ui::AXOffscreenResult* offscreen_result = nullptr) const;
gfx::Rect GetUnclippedRootFrameInnerTextRangeBoundsRect(
const int start_offset,
const int end_offset,
ui::AXOffscreenResult* offscreen_result = nullptr) const;
// DEPRECATED: Prefer using the interfaces provided by AXPlatformNodeDelegate
// when writing new code.
gfx::Rect GetScreenHypertextRangeBoundsRect(
int start,
int len,
const ui::AXClippingBehavior clipping_behavior,
ui::AXOffscreenResult* offscreen_result = nullptr) const;
// Returns the bounds of the given range in coordinates relative to the
// top-left corner of the overall web area. Only valid when the role is
// WebAXRoleStaticText.
// DEPRECATED (for public use): Prefer using the interfaces provided by
// AXPlatformNodeDelegate when writing new non-private code.
gfx::Rect GetRootFrameHypertextRangeBoundsRect(
int start,
int len,
const ui::AXClippingBehavior clipping_behavior,
ui::AXOffscreenResult* offscreen_result = nullptr) const;
// Returns the value of a control, such as the value of a text field, a slider
// or a scrollbar.
//
// For text fields, computes the value of the field from its internal
// representation in the accessibility tree if necessary.
//
// This is to handle the cases such as ARIA textbox, where the value should
// be calculated from the object's inner text, as well as all text fields
// originating from Blink where the HTML value attribute cannot always be
// trusted.
//
// TODO(nektar): Move this method to AXNode when AXNodePosition and
// BrowserAccessibilityPosition are merged into one class.
virtual base::string16 GetValue() const;
// This is an approximate hit test that only uses the information in
// the browser process to compute the correct result. It will not return
// correct results in many cases of z-index, overflow, and absolute
// positioning, so BrowserAccessibilityManager::CachingAsyncHitTest
// should be used instead, which falls back on calling ApproximateHitTest
// automatically.
//
// Note that unlike BrowserAccessibilityManager::CachingAsyncHitTest, this
// method takes a parameter in Blink's definition of screen coordinates.
// This is so that the scale factor is consistent with what we receive from
// Blink and store in the AX tree.
// Blink screen coordinates are 1:1 with physical pixels if use-zoom-for-dsf
// is disabled; they're physical pixels divided by device scale factor if
// use-zoom-for-dsf is disabled. For more information see:
// http://www.chromium.org/developers/design-documents/blink-coordinate-spaces
BrowserAccessibility* ApproximateHitTest(
const gfx::Point& blink_screen_point);
//
// Accessors
//
BrowserAccessibilityManager* manager() const { return manager_; }
ui::AXNode* node() const { return node_; }
// These access the internal unignored accessibility tree, which doesn't
// necessarily reflect the accessibility tree that should be exposed on each
// platform. Use PlatformChildCount and PlatformGetChild to implement platform
// accessibility APIs.
uint32_t InternalChildCount() const;
BrowserAccessibility* InternalGetChild(uint32_t child_index) const;
BrowserAccessibility* InternalGetParent() const;
BrowserAccessibility* InternalGetFirstChild() const;
BrowserAccessibility* InternalGetLastChild() const;
BrowserAccessibility* InternalGetNextSibling() const;
BrowserAccessibility* InternalGetPreviousSibling() const;
using InternalChildIterator = ui::AXNode::ChildIteratorBase<
BrowserAccessibility,
&BrowserAccessibility::InternalGetNextSibling,
&BrowserAccessibility::InternalGetPreviousSibling,
&BrowserAccessibility::InternalGetFirstChild,
&BrowserAccessibility::InternalGetLastChild>;
InternalChildIterator InternalChildrenBegin() const;
InternalChildIterator InternalChildrenEnd() const;
ui::AXNode::AXID GetId() const;
gfx::RectF GetLocation() const;
ax::mojom::Role GetRole() const;
int32_t GetState() const;
typedef base::StringPairs HtmlAttributes;
const HtmlAttributes& GetHtmlAttributes() const;
// Accessing accessibility attributes:
//
// There are dozens of possible attributes for an accessibility node,
// but only a few tend to apply to any one object, so we store them
// in sparse arrays of <attribute id, attribute value> pairs, organized
// by type (bool, int, float, string, int list).
//
// There are three accessors for each type of attribute: one that returns
// true if the attribute is present and false if not, one that takes a
// pointer argument and returns true if the attribute is present (if you
// need to distinguish between the default value and a missing attribute),
// and another that returns the default value for that type if the
// attribute is not present. In addition, strings can be returned as
// either std::string or base::string16, for convenience.
bool HasBoolAttribute(ax::mojom::BoolAttribute attr) const;
bool GetBoolAttribute(ax::mojom::BoolAttribute attr) const;
bool GetBoolAttribute(ax::mojom::BoolAttribute attr, bool* value) const;
bool HasFloatAttribute(ax::mojom::FloatAttribute attr) const;
float GetFloatAttribute(ax::mojom::FloatAttribute attr) const;
bool GetFloatAttribute(ax::mojom::FloatAttribute attr, float* value) const;
bool HasInheritedStringAttribute(ax::mojom::StringAttribute attribute) const;
const std::string& GetInheritedStringAttribute(
ax::mojom::StringAttribute attribute) const;
base::string16 GetInheritedString16Attribute(
ax::mojom::StringAttribute attribute) const;
bool HasIntAttribute(ax::mojom::IntAttribute attribute) const;
int GetIntAttribute(ax::mojom::IntAttribute attribute) const;
bool GetIntAttribute(ax::mojom::IntAttribute attribute, int* value) const;
bool HasStringAttribute(ax::mojom::StringAttribute attribute) const;
const std::string& GetStringAttribute(
ax::mojom::StringAttribute attribute) const;
bool GetStringAttribute(ax::mojom::StringAttribute attribute,
std::string* value) const;
base::string16 GetString16Attribute(
ax::mojom::StringAttribute attribute) const;
bool GetString16Attribute(ax::mojom::StringAttribute attribute,
base::string16* value) const;
bool HasIntListAttribute(ax::mojom::IntListAttribute attribute) const;
const std::vector<int32_t>& GetIntListAttribute(
ax::mojom::IntListAttribute attribute) const;
bool GetIntListAttribute(ax::mojom::IntListAttribute attribute,
std::vector<int32_t>* value) const;
// Retrieve the value of a html attribute from the attribute map and
// returns true if found.
bool GetHtmlAttribute(const char* attr, std::string* value) const;
bool GetHtmlAttribute(const char* attr, base::string16* value) const;
// Returns true if the bit corresponding to the given enum is 1.
bool HasState(ax::mojom::State state_enum) const;
bool HasAction(ax::mojom::Action action_enum) const;
// True if this is a web area, and its grandparent is a presentational iframe.
bool IsWebAreaForPresentationalIframe() const;
virtual bool IsClickable() const;
// See AXNodeData::IsTextField().
bool IsTextField() const;
// See AXNodeData::IsPasswordField().
bool IsPasswordField() const;
// See AXNodeData::IsPlainTextField().
bool IsPlainTextField() const;
// See AXNodeData::IsRichTextField().
bool IsRichTextField() const;
// Returns true if the accessible name was explicitly set to "" by the author
bool HasExplicitlyEmptyName() const;
// TODO(nektar): Remove this method and replace with GetInnerText.
std::string ComputeAccessibleNameFromDescendants() const;
// Get text to announce for a live region change, for ATs that do not
// implement this functionality.
std::string GetLiveRegionText() const;
// Creates a text position rooted at this object. Does not conver to a
// leaf text position - see CreatePositionForSelectionAt, below.
BrowserAccessibilityPosition::AXPositionInstance CreatePositionAt(
int offset,
ax::mojom::TextAffinity affinity =
ax::mojom::TextAffinity::kDownstream) const;
// |offset| could either be a text character or a child index in case of
// non-text objects. Converts to a leaf text position if you pass a
// character offset on a container node.
BrowserAccessibilityPosition::AXPositionInstance CreatePositionForSelectionAt(
int offset) const;
// Gets the text offsets where new lines start.
std::vector<int> GetLineStartOffsets() const;
gfx::NativeViewAccessible GetNativeViewAccessible() override;
// AXPosition Support
// Returns the text that is present inside this node, where the
// representation of text found in descendant nodes depends on the platform.
// For example some platforms may include descendant text while while other
// platforms may use a special character to represent descendant text.
// Prefer either GetHypertext or GetInnerText so it's clear which API is
// called.
//
// TODO(nektar): Move this method to AXNode when AXNodePosition and
// BrowserAccessibilityPosition are merged into one class.
virtual base::string16 GetText() const;
base::string16 GetNameAsString16() const;
// AXPlatformNodeDelegate.
base::string16 GetAuthorUniqueId() const override;
const ui::AXNodeData& GetData() const override;
const ui::AXTreeData& GetTreeData() const override;
const ui::AXTree::Selection GetUnignoredSelection() const override;
ui::AXNodePosition::AXPositionInstance CreateTextPositionAt(
int offset) const override;
gfx::NativeViewAccessible GetNSWindow() override;
gfx::NativeViewAccessible GetParent() override;
int GetChildCount() const override;
gfx::NativeViewAccessible ChildAtIndex(int index) override;
gfx::NativeViewAccessible GetFirstChild() override;
gfx::NativeViewAccessible GetLastChild() override;
gfx::NativeViewAccessible GetNextSibling() override;
gfx::NativeViewAccessible GetPreviousSibling() override;
bool IsChildOfLeaf() const override;
bool IsChildOfPlainTextField() const override;
bool IsLeaf() const override;
gfx::NativeViewAccessible GetClosestPlatformObject() const override;
std::unique_ptr<ChildIterator> ChildrenBegin() override;
std::unique_ptr<ChildIterator> ChildrenEnd() override;
std::string GetName() const override;
base::string16 GetHypertext() const override;
bool SetHypertextSelection(int start_offset, int end_offset) override;
base::string16 GetInnerText() const override;
gfx::Rect GetBoundsRect(
const ui::AXCoordinateSystem coordinate_system,
const ui::AXClippingBehavior clipping_behavior,
ui::AXOffscreenResult* offscreen_result = nullptr) const override;
gfx::Rect GetHypertextRangeBoundsRect(
const int start_offset,
const int end_offset,
const ui::AXCoordinateSystem coordinate_system,
const ui::AXClippingBehavior clipping_behavior,
ui::AXOffscreenResult* offscreen_result = nullptr) const override;
gfx::Rect GetInnerTextRangeBoundsRect(
const int start_offset,
const int end_offset,
const ui::AXCoordinateSystem coordinate_system,
const ui::AXClippingBehavior clipping_behavior,
ui::AXOffscreenResult* offscreen_result = nullptr) const override;
gfx::NativeViewAccessible HitTestSync(int physical_pixel_x,
int physical_pixel_y) const override;
gfx::NativeViewAccessible GetFocus() override;
ui::AXPlatformNode* GetFromNodeID(int32_t id) override;
ui::AXPlatformNode* GetFromTreeIDAndNodeID(const ui::AXTreeID& ax_tree_id,
int32_t id) override;
int GetIndexInParent() override;
gfx::AcceleratedWidget GetTargetForNativeAccessibilityEvent() override;
base::Optional<int> FindTextBoundary(
ax::mojom::TextBoundary boundary,
int offset,
ax::mojom::MoveDirection direction,
ax::mojom::TextAffinity affinity) const override;
const std::vector<gfx::NativeViewAccessible> GetUIADescendants()
const override;
std::string GetLanguage() const override;
bool IsTable() const override;
base::Optional<int> GetTableColCount() const override;
base::Optional<int> GetTableRowCount() const override;
base::Optional<int> GetTableAriaColCount() const override;
base::Optional<int> GetTableAriaRowCount() const override;
base::Optional<int> GetTableCellCount() const override;
base::Optional<bool> GetTableHasColumnOrRowHeaderNode() const override;
std::vector<ui::AXNode::AXID> GetColHeaderNodeIds() const override;
std::vector<ui::AXNode::AXID> GetColHeaderNodeIds(
int col_index) const override;
std::vector<ui::AXNode::AXID> GetRowHeaderNodeIds() const override;
std::vector<ui::AXNode::AXID> GetRowHeaderNodeIds(
int row_index) const override;
ui::AXPlatformNode* GetTableCaption() const override;
bool IsTableRow() const override;
base::Optional<int> GetTableRowRowIndex() const override;
bool IsTableCellOrHeader() const override;
base::Optional<int> GetTableCellIndex() const override;
base::Optional<int> GetTableCellColIndex() const override;
base::Optional<int> GetTableCellRowIndex() const override;
base::Optional<int> GetTableCellColSpan() const override;
base::Optional<int> GetTableCellRowSpan() const override;
base::Optional<int> GetTableCellAriaColIndex() const override;
base::Optional<int> GetTableCellAriaRowIndex() const override;
base::Optional<int32_t> GetCellId(int row_index,
int col_index) const override;
base::Optional<int32_t> CellIndexToId(int cell_index) const override;
bool IsCellOrHeaderOfARIATable() const override;
bool IsCellOrHeaderOfARIAGrid() const override;
bool AccessibilityPerformAction(const ui::AXActionData& data) override;
base::string16 GetLocalizedStringForImageAnnotationStatus(
ax::mojom::ImageAnnotationStatus status) const override;
base::string16 GetLocalizedRoleDescriptionForUnlabeledImage() const override;
base::string16 GetLocalizedStringForLandmarkType() const override;
base::string16 GetLocalizedStringForRoleDescription() const override;
base::string16 GetStyleNameAttributeAsLocalizedString() const override;
ui::TextAttributeMap ComputeTextAttributeMap(
const ui::TextAttributeList& default_attributes) const override;
std::string GetInheritedFontFamilyName() const override;
bool ShouldIgnoreHoveredStateForTesting() override;
bool IsOffscreen() const override;
bool IsMinimized() const override;
bool IsWebContent() const override;
bool HasVisibleCaretOrSelection() const override;
ui::AXPlatformNode* GetTargetNodeForRelation(
ax::mojom::IntAttribute attr) override;
std::vector<ui::AXPlatformNode*> GetTargetNodesForRelation(
ax::mojom::IntListAttribute attr) override;
std::set<ui::AXPlatformNode*> GetReverseRelations(
ax::mojom::IntAttribute attr) override;
std::set<ui::AXPlatformNode*> GetReverseRelations(
ax::mojom::IntListAttribute attr) override;
bool IsOrderedSetItem() const override;
bool IsOrderedSet() const override;
base::Optional<int> GetPosInSet() const override;
base::Optional<int> GetSetSize() const override;
bool IsInListMarker() const;
bool IsCollapsedMenuListPopUpButton() const;
BrowserAccessibility* GetCollapsedMenuListPopUpButtonAncestor() const;
// Returns true if:
// 1. This node is a list, AND
// 2. This node has a list ancestor or a list descendant.
bool IsHierarchicalList() const;
// Returns a string representation of this object for debugging purposes.
std::string ToString() const;
protected:
// The UIA tree formatter needs access to GetUniqueId() to identify the
// starting point for tree dumps.
friend class AccessibilityTreeFormatterUia;
using BrowserAccessibilityPositionInstance =
BrowserAccessibilityPosition::AXPositionInstance;
using AXPlatformRange =
ui::AXRange<BrowserAccessibilityPositionInstance::element_type>;
virtual ui::TextAttributeList ComputeTextAttributes() const;
// The manager of this tree of accessibility objects.
BrowserAccessibilityManager* manager_ = nullptr;
// The underlying node.
ui::AXNode* node_ = nullptr;
// Protected so that it can't be called directly on a BrowserAccessibility
// where it could be confused with an id that comes from the node data,
// which is only unique to the Blink process.
// Does need to be called by subclasses such as BrowserAccessibilityAndroid.
const ui::AXUniqueId& GetUniqueId() const override;
// Returns a text attribute map indicating the offsets in the text of a leaf
// object, such as a text field or static text, where spelling and grammar
// errors are present.
ui::TextAttributeMap GetSpellingAndGrammarAttributes() const;
std::string SubtreeToStringHelper(size_t level) override;
private:
// Return the bounds after converting from this node's coordinate system
// (which is relative to its nearest scrollable ancestor) to the coordinate
// system specified. If the clipping behavior is set to clipped, clipping is
// applied to all bounding boxes so that the resulting rect is within the
// window. If the clipping behavior is unclipped, the resulting rect may be
// outside of the window or offscreen. If an offscreen result address is
// provided, it will be populated depending on whether the returned bounding
// box is onscreen or offscreen.
gfx::Rect RelativeToAbsoluteBounds(
gfx::RectF bounds,
const ui::AXCoordinateSystem coordinate_system,
const ui::AXClippingBehavior clipping_behavior,
ui::AXOffscreenResult* offscreen_result) const;
// Return a rect for a 1-width character past the end of text. This is what
// ATs expect when getting the character extents past the last character in
// a line, and equals what the caret bounds would be when past the end of
// the text.
gfx::Rect GetRootFrameHypertextBoundsPastEndOfText(
const ui::AXClippingBehavior clipping_behavior,
ui::AXOffscreenResult* offscreen_result = nullptr) const;
// Return the bounds of inline text in this node's coordinate system (which
// is relative to its container node specified in AXRelativeBounds).
gfx::RectF GetInlineTextRect(const int start_offset,
const int end_offset,
const int max_length) const;
// Recursive helper function for GetInnerTextRangeBounds.
gfx::Rect GetInnerTextRangeBoundsRectInSubtree(
const int start_offset,
const int end_offset,
const ui::AXCoordinateSystem coordinate_system,
const ui::AXClippingBehavior clipping_behavior,
ui::AXOffscreenResult* offscreen_result) const;
// Given a set of node ids, return the nodes in this delegate's tree to
// which they correspond.
std::set<ui::AXPlatformNode*> GetNodesForNodeIdSet(
const std::set<int32_t>& ids);
// If the node has a child tree, get the root node.
BrowserAccessibility* PlatformGetRootOfChildTree() const;
// Given a set of map of spelling text attributes and a start offset, merge
// them into the given map of existing text attributes. Merges the given
// spelling attributes, i.e. document marker information, into the given
// text attributes starting at the given character offset. This is required
// because document markers that are present on text leaves need to be
// propagated to their parent object for compatibility with Firefox.
static void MergeSpellingAndGrammarIntoTextAttributes(
const ui::TextAttributeMap& spelling_attributes,
int start_offset,
ui::TextAttributeMap* text_attributes);
// Return true is the list of text attributes already includes an invalid
// attribute originating from ARIA.
static bool HasInvalidAttribute(const ui::TextAttributeList& attributes);
// A unique ID, since node IDs are frame-local.
ui::AXUniqueId unique_id_;
DISALLOW_COPY_AND_ASSIGN(BrowserAccessibility);
};
} // namespace content
#endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_H_
|