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 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835
|
/*
* Copyright (C) 2003, 2006, 2007, 2008, 2009, 2010, 2011, 2015 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#pragma once
#include "AXGeometryManager.h"
#include "AXIsolatedTree.h"
#include "AXTextMarker.h"
#include "AXTextStateChangeIntent.h"
#include "AXTreeStore.h"
#include "AccessibilityObject.h"
#include "SimpleRange.h"
#include "Timer.h"
#include "VisibleUnits.h"
#include <limits.h>
#include <wtf/CheckedPtr.h>
#include <wtf/HashMap.h>
#include <wtf/HashSet.h>
#include <wtf/ListHashSet.h>
#include <wtf/WeakHashMap.h>
#include <wtf/WeakHashSet.h>
namespace WTF {
class TextStream;
}
namespace WebCore {
class AccessibilityTable;
class Document;
class HTMLAreaElement;
class HTMLTableElement;
class HTMLTextFormControlElement;
class Node;
class Page;
class RenderBlock;
class RenderObject;
class RenderText;
class Scrollbar;
class ScrollView;
class VisiblePosition;
class Widget;
struct CharacterOffset {
Node* node;
int startIndex;
int offset;
int remainingOffset;
CharacterOffset(Node* n = nullptr, int startIndex = 0, int offset = 0, int remaining = 0)
: node(n)
, startIndex(startIndex)
, offset(offset)
, remainingOffset(remaining)
{ }
int remaining() const { return remainingOffset; }
bool isNull() const { return !node; }
bool isEqual(const CharacterOffset& other) const
{
if (isNull() || other.isNull())
return false;
return node == other.node && startIndex == other.startIndex && offset == other.offset;
}
String debugDescription()
{
return makeString("CharacterOffset {node: ", node ? node->debugDescription() : "null"_s, ", startIndex: ", startIndex, ", offset: ", offset, ", remainingOffset: ", remainingOffset, "}");
}
};
class AXComputedObjectAttributeCache {
WTF_MAKE_FAST_ALLOCATED;
public:
AccessibilityObjectInclusion getIgnored(AXID) const;
void setIgnored(AXID, AccessibilityObjectInclusion);
private:
struct CachedAXObjectAttributes {
CachedAXObjectAttributes()
: ignored(AccessibilityObjectInclusion::DefaultBehavior)
{ }
AccessibilityObjectInclusion ignored;
};
HashMap<AXID, CachedAXObjectAttributes> m_idMapping;
};
struct VisiblePositionIndex {
int value = -1;
RefPtr<ContainerNode> scope;
};
struct VisiblePositionIndexRange {
VisiblePositionIndex startIndex;
VisiblePositionIndex endIndex;
bool isNull() const { return startIndex.value == -1 || endIndex.value == -1; }
};
struct AXTreeData {
String liveTree;
String isolatedTree;
};
class AccessibilityReplacedText {
public:
AccessibilityReplacedText() = default;
AccessibilityReplacedText(const VisibleSelection&);
void postTextStateChangeNotification(AXObjectCache*, AXTextEditType, const String&, const VisibleSelection&);
const VisiblePositionIndexRange& replacedRange() { return m_replacedRange; }
protected:
String m_replacedText;
VisiblePositionIndexRange m_replacedRange;
};
#if !PLATFORM(COCOA)
enum AXTextChange { AXTextInserted, AXTextDeleted, AXTextAttributesChanged };
#endif
enum class PostTarget { Element, ObservableParent };
class AXObjectCache : public CanMakeWeakPtr<AXObjectCache>, public CanMakeCheckedPtr
, public AXTreeStore<AXObjectCache> {
WTF_MAKE_NONCOPYABLE(AXObjectCache);
WTF_MAKE_FAST_ALLOCATED;
friend class AXIsolatedTree;
friend class AXTextMarker;
friend WTF::TextStream& operator<<(WTF::TextStream&, AXObjectCache&);
public:
explicit AXObjectCache(Document&);
~AXObjectCache();
// Returns the root object for the entire document.
WEBCORE_EXPORT AXCoreObject* rootObject();
// Returns the root object for a specific frame.
WEBCORE_EXPORT AccessibilityObject* rootObjectForFrame(LocalFrame*);
// For AX objects with elements that back them.
AccessibilityObject* getOrCreate(RenderObject*);
AccessibilityObject* getOrCreate(Widget*);
WEBCORE_EXPORT AccessibilityObject* getOrCreate(Node*);
// used for objects without backing elements
AccessibilityObject* create(AccessibilityRole);
// will only return the AccessibilityObject if it already exists
AccessibilityObject* get(RenderObject*);
AccessibilityObject* get(Widget*);
AccessibilityObject* get(Node*);
void remove(RenderObject*);
void remove(Node&);
void remove(Widget*);
void remove(AXID);
#if !PLATFORM(COCOA) && !USE(ATSPI)
void detachWrapper(AXCoreObject*, AccessibilityDetachmentType);
#endif
private:
using DOMObjectVariant = std::variant<std::nullptr_t, RenderObject*, Node*, Widget*>;
void cacheAndInitializeWrapper(AccessibilityObject*, DOMObjectVariant = nullptr);
void attachWrapper(AccessibilityObject*);
public:
enum class CompositionState : uint8_t { Started, InProgress, Ended };
void onPageActivityStateChange(OptionSet<ActivityState>);
void setPageActivityState(OptionSet<ActivityState> state) { m_pageActivityState = state; }
OptionSet<ActivityState> pageActivityState() const { return m_pageActivityState; }
void childrenChanged(Node*, Node* newChild = nullptr);
void childrenChanged(RenderObject*, RenderObject* newChild = nullptr);
void childrenChanged(AccessibilityObject*);
void onFocusChange(Node* oldFocusedNode, Node* newFocusedNode);
void onPopoverTargetToggle(const HTMLFormControlElement&);
void onScrollbarFrameRectChange(const Scrollbar&);
void onSelectedChanged(Node*);
void onTextSecurityChanged(HTMLInputElement&);
void onTitleChange(Document&);
void onValidityChange(Element&);
void onTextCompositionChange(Node&, CompositionState, bool);
void valueChanged(Element*);
void checkedStateChanged(Node*);
void autofillTypeChanged(Node*);
void handleRoleChanged(AccessibilityObject*);
// Called when a RenderObject is created for an Element. Depending on the
// presence of a RenderObject, we may have instatiated an AXRenderObject or
// an AXNodeObject. This occurs when an Element with no renderer is
// re-parented into a subtree that does have a renderer.
void onRendererCreated(Element&);
void updateLoadingProgress(double);
void loadingFinished() { updateLoadingProgress(1); }
double loadingProgress() const { return m_loadingProgress; }
struct AttributeChange {
WeakPtr<Element, WeakPtrImplWithEventTargetData> element { nullptr };
QualifiedName attrName;
AtomString oldValue;
AtomString newValue;
};
using DeferredCollection = std::variant<HashMap<Element*, String>
, HashSet<AXID>
, ListHashSet<Node*>
, ListHashSet<RefPtr<AccessibilityObject>>
, Vector<AttributeChange>
, Vector<std::pair<Node*, Node*>>
, WeakHashSet<Element, WeakPtrImplWithEventTargetData>
, WeakHashSet<HTMLTableElement, WeakPtrImplWithEventTargetData>
, WeakHashSet<AccessibilityTable>
, WeakListHashSet<Node, WeakPtrImplWithEventTargetData>
, WeakHashMap<Element, String, WeakPtrImplWithEventTargetData>>;
void deferFocusedUIElementChangeIfNeeded(Node* oldFocusedNode, Node* newFocusedNode);
void deferModalChange(Element*);
void deferMenuListValueChange(Element*);
void deferNodeAddedOrRemoved(Node*);
void handleScrolledToAnchor(const Node* anchorNode);
void onScrollbarUpdate(ScrollView*);
bool isRetrievingCurrentModalNode() { return m_isRetrievingCurrentModalNode; }
Node* modalNode();
void deferAttributeChangeIfNeeded(Element*, const QualifiedName&, const AtomString&, const AtomString&);
void recomputeIsIgnored(RenderObject*);
void recomputeIsIgnored(Node*);
WEBCORE_EXPORT static void enableAccessibility();
WEBCORE_EXPORT static void disableAccessibility();
static bool forceDeferredSpellChecking() { return gForceDeferredSpellChecking; }
WEBCORE_EXPORT static void setForceDeferredSpellChecking(bool);
#if PLATFORM(MAC)
static bool shouldSpellCheck();
#else
static bool shouldSpellCheck() { return true; }
#endif
WEBCORE_EXPORT AccessibilityObject* focusedObjectForPage(const Page*);
// Enhanced user interface accessibility can be toggled by the assistive technology.
WEBCORE_EXPORT static void setEnhancedUserInterfaceAccessibility(bool flag);
// Note: these may be called from a non-main thread concurrently as other readers.
static bool accessibilityEnabled() { return gAccessibilityEnabled; }
static bool accessibilityEnhancedUserInterfaceEnabled() { return gAccessibilityEnhancedUserInterfaceEnabled; }
const Element* rootAXEditableElement(const Node*);
bool nodeIsTextControl(const Node*);
AccessibilityObject* objectForID(const AXID id) const { return m_objects.get(id); }
Vector<RefPtr<AXCoreObject>> objectsForIDs(const Vector<AXID>&) const;
#if ENABLE(ACCESSIBILITY_ISOLATED_TREE)
void onPaint(const RenderObject&, IntRect&&) const;
void onPaint(const Widget&, IntRect&&) const;
#else
NO_RETURN_DUE_TO_ASSERT void onPaint(const RenderObject&, IntRect&&) const { ASSERT_NOT_REACHED(); }
NO_RETURN_DUE_TO_ASSERT void onPaint(const Widget&, IntRect&&) const { ASSERT_NOT_REACHED(); }
#endif
// Text marker utilities.
std::optional<TextMarkerData> textMarkerDataForVisiblePosition(const VisiblePosition&);
std::optional<TextMarkerData> textMarkerDataForFirstPositionInTextControl(HTMLTextFormControlElement&);
TextMarkerData textMarkerDataForCharacterOffset(const CharacterOffset&);
TextMarkerData textMarkerDataForNextCharacterOffset(const CharacterOffset&);
AXTextMarker nextTextMarker(const AXTextMarker&);
TextMarkerData textMarkerDataForPreviousCharacterOffset(const CharacterOffset&);
AXTextMarker previousTextMarker(const AXTextMarker&);
VisiblePosition visiblePositionForTextMarkerData(const TextMarkerData&);
CharacterOffset characterOffsetForTextMarkerData(TextMarkerData&);
// Use ignoreNextNodeStart/ignorePreviousNodeEnd to determine the behavior when we are at node boundary.
CharacterOffset nextCharacterOffset(const CharacterOffset&, bool ignoreNextNodeStart = true);
CharacterOffset previousCharacterOffset(const CharacterOffset&, bool ignorePreviousNodeEnd = true);
TextMarkerData startOrEndTextMarkerDataForRange(const SimpleRange&, bool);
CharacterOffset startOrEndCharacterOffsetForRange(const SimpleRange&, bool, bool enterTextControls = false);
AccessibilityObject* accessibilityObjectForTextMarkerData(TextMarkerData&);
std::optional<SimpleRange> rangeForUnorderedCharacterOffsets(const CharacterOffset&, const CharacterOffset&);
static SimpleRange rangeForNodeContents(Node&);
static unsigned lengthForRange(const SimpleRange&);
// Word boundary
CharacterOffset nextWordEndCharacterOffset(const CharacterOffset&);
CharacterOffset previousWordStartCharacterOffset(const CharacterOffset&);
std::optional<SimpleRange> leftWordRange(const CharacterOffset&);
std::optional<SimpleRange> rightWordRange(const CharacterOffset&);
// Paragraph
std::optional<SimpleRange> paragraphForCharacterOffset(const CharacterOffset&);
CharacterOffset nextParagraphEndCharacterOffset(const CharacterOffset&);
CharacterOffset previousParagraphStartCharacterOffset(const CharacterOffset&);
// Sentence
std::optional<SimpleRange> sentenceForCharacterOffset(const CharacterOffset&);
CharacterOffset nextSentenceEndCharacterOffset(const CharacterOffset&);
CharacterOffset previousSentenceStartCharacterOffset(const CharacterOffset&);
// Bounds
CharacterOffset characterOffsetForPoint(const IntPoint&, AXCoreObject*);
IntRect absoluteCaretBoundsForCharacterOffset(const CharacterOffset&);
CharacterOffset characterOffsetForBounds(const IntRect&, bool);
// Lines
CharacterOffset endCharacterOffsetOfLine(const CharacterOffset&);
CharacterOffset startCharacterOffsetOfLine(const CharacterOffset&);
// Index
CharacterOffset characterOffsetForIndex(int, const AXCoreObject*);
enum AXNotification {
AXAccessKeyChanged,
AXActiveDescendantChanged,
AXAutocorrectionOccured,
AXAutofillTypeChanged,
AXCellSlotsChanged,
AXCheckedStateChanged,
AXChildrenChanged,
AXColumnCountChanged,
AXColumnIndexChanged,
AXColumnSpanChanged,
AXControlledObjectsChanged,
AXCurrentStateChanged,
AXDescribedByChanged,
AXDisabledStateChanged,
AXDropEffectChanged,
AXFlowToChanged,
AXFocusedUIElementChanged,
AXFrameLoadComplete,
AXGrabbedStateChanged,
AXHasPopupChanged,
AXIdAttributeChanged,
AXImageOverlayChanged,
AXIsAtomicChanged,
AXKeyShortcutsChanged,
AXLanguageChanged,
AXLayoutComplete,
AXLevelChanged,
AXLoadComplete,
AXNewDocumentLoadComplete,
AXPageScrolled,
AXPlaceholderChanged,
AXPositionInSetChanged,
AXRoleChanged,
AXRoleDescriptionChanged,
AXRowIndexChanged,
AXRowSpanChanged,
AXSelectedChildrenChanged,
AXSelectedCellsChanged,
AXSelectedStateChanged,
AXSelectedTextChanged,
AXSetSizeChanged,
AXTableHeadersChanged,
AXTextCompositionBegan,
AXTextCompositionEnded,
AXURLChanged,
AXValueChanged,
AXScrolledToAnchor,
AXLiveRegionCreated,
AXLiveRegionChanged,
AXLiveRegionRelevantChanged,
AXLiveRegionStatusChanged,
AXMaximumValueChanged,
AXMenuListItemSelected,
AXMenuListValueChanged,
AXMenuClosed,
AXMenuOpened,
AXMinimumValueChanged,
AXMultiSelectableStateChanged,
AXOrientationChanged,
AXRowCountChanged,
AXRowCollapsed,
AXRowExpanded,
AXExpandedChanged,
AXInvalidStatusChanged,
AXPressDidSucceed,
AXPressDidFail,
AXPressedStateChanged,
AXReadOnlyStatusChanged,
AXRequiredStatusChanged,
AXSortDirectionChanged,
AXTextChanged,
AXTextCompositionChanged,
AXTextSecurityChanged,
AXElementBusyChanged,
AXDraggingStarted,
AXDraggingEnded,
AXDraggingEnteredDropZone,
AXDraggingDropped,
AXDraggingExitedDropZone
};
void postNotification(RenderObject*, AXNotification, PostTarget = PostTarget::Element);
void postNotification(Node*, AXNotification, PostTarget = PostTarget::Element);
void postNotification(AccessibilityObject*, Document*, AXNotification, PostTarget = PostTarget::Element);
#ifndef NDEBUG
void showIntent(const AXTextStateChangeIntent&);
#endif
void setTextSelectionIntent(const AXTextStateChangeIntent&);
void setIsSynchronizingSelection(bool);
void postTextStateChangeNotification(Node*, AXTextEditType, const String&, const VisiblePosition&);
void postTextReplacementNotification(Node*, AXTextEditType deletionType, const String& deletedText, AXTextEditType insertionType, const String& insertedText, const VisiblePosition&);
void postTextReplacementNotificationForTextControl(HTMLTextFormControlElement&, const String& deletedText, const String& insertedText);
void postTextStateChangeNotification(Node*, const AXTextStateChangeIntent&, const VisibleSelection&);
void postTextStateChangeNotification(const Position&, const AXTextStateChangeIntent&, const VisibleSelection&);
void postLiveRegionChangeNotification(AccessibilityObject*);
enum AXLoadingEvent {
AXLoadingStarted,
AXLoadingReloaded,
AXLoadingFailed,
AXLoadingFinished
};
void frameLoadingEventNotification(LocalFrame*, AXLoadingEvent);
void prepareForDocumentDestruction(const Document&);
void startCachingComputedObjectAttributesUntilTreeMutates();
void stopCachingComputedObjectAttributes();
AXComputedObjectAttributeCache* computedObjectAttributeCache() { return m_computedObjectAttributeCache.get(); }
Document& document() const { return const_cast<Document&>(m_document.get()); }
constexpr const std::optional<PageIdentifier>& pageID() const { return m_pageID; }
#if PLATFORM(MAC)
static void setShouldRepostNotificationsForTests(bool value);
#endif
void deferRecomputeIsIgnoredIfNeeded(Element*);
void deferRecomputeIsIgnored(Element*);
void deferRecomputeTableIsExposed(Element*);
void deferRecomputeTableCellSlots(AccessibilityTable&);
void deferTextChangedIfNeeded(Node*);
void deferSelectedChildrenChangedIfNeeded(Element&);
void performDeferredCacheUpdate();
void deferTextReplacementNotificationForTextControl(HTMLTextFormControlElement&, const String& previousValue);
std::optional<SimpleRange> rangeMatchesTextNearRange(const SimpleRange&, const String&);
static ASCIILiteral notificationPlatformName(AXNotification);
AXTreeData treeData();
// Returns the IDs of the objects that relate to the given object with the specified relationship.
std::optional<Vector<AXID>> relatedObjectIDsFor(const AXCoreObject&, AXRelationType);
void updateRelations(Element&, const QualifiedName&);
#if ENABLE(ACCESSIBILITY_ISOLATED_TREE)
void scheduleObjectRegionsUpdate(bool scheduleImmediately = false) { m_geometryManager->scheduleObjectRegionsUpdate(scheduleImmediately); }
void willUpdateObjectRegions() { m_geometryManager->willUpdateObjectRegions(); }
WEBCORE_EXPORT static bool isIsolatedTreeEnabled();
private:
static bool clientSupportsIsolatedTree();
static bool isTestClient();
AXCoreObject* isolatedTreeRootObject();
// Propagates the root of the isolated tree back into the Core and WebKit.
void setIsolatedTreeRoot(AXCoreObject*);
void setIsolatedTreeFocusedObject(AccessibilityObject*);
RefPtr<AXIsolatedTree> getOrCreateIsolatedTree();
void buildIsolatedTree();
void updateIsolatedTree(AccessibilityObject&, AXNotification);
void updateIsolatedTree(AccessibilityObject*, AXNotification);
void updateIsolatedTree(const Vector<std::pair<RefPtr<AccessibilityObject>, AXNotification>>&);
static void initializeSecondaryAXThread();
#endif
protected:
void postPlatformNotification(AXCoreObject*, AXNotification);
void platformHandleFocusedUIElementChanged(Node* oldFocusedNode, Node* newFocusedNode);
void platformPerformDeferredCacheUpdate();
#if PLATFORM(COCOA) || USE(ATSPI)
void postTextStateChangePlatformNotification(AccessibilityObject*, const AXTextStateChangeIntent&, const VisibleSelection&);
void postTextStateChangePlatformNotification(AccessibilityObject*, AXTextEditType, const String&, const VisiblePosition&);
void postTextReplacementPlatformNotificationForTextControl(AccessibilityObject*, const String& deletedText, const String& insertedText, HTMLTextFormControlElement&);
void postTextReplacementPlatformNotification(AccessibilityObject*, AXTextEditType, const String&, AXTextEditType, const String&, const VisiblePosition&);
#else
static AXTextChange textChangeForEditType(AXTextEditType);
void nodeTextChangePlatformNotification(AccessibilityObject*, AXTextChange, unsigned, const String&);
#endif
void frameLoadingEventPlatformNotification(AccessibilityObject*, AXLoadingEvent);
void labelChanged(Element*);
// This is a weak reference cache for knowing if Nodes used by TextMarkers are valid.
void setNodeInUse(Node* n) { m_textMarkerNodes.add(n); }
void removeNodeForUse(Node& n) { m_textMarkerNodes.remove(&n); }
bool isNodeInUse(Node* n) { return m_textMarkerNodes.contains(n); }
// CharacterOffset functions.
enum TraverseOption { TraverseOptionDefault = 1 << 0, TraverseOptionToNodeEnd = 1 << 1, TraverseOptionIncludeStart = 1 << 2, TraverseOptionValidateOffset = 1 << 3, TraverseOptionDoNotEnterTextControls = 1 << 4 };
Node* nextNode(Node*) const;
Node* previousNode(Node*) const;
CharacterOffset traverseToOffsetInRange(const SimpleRange&, int, TraverseOption = TraverseOptionDefault, bool stayWithinRange = false);
public:
VisiblePosition visiblePositionFromCharacterOffset(const CharacterOffset&);
protected:
CharacterOffset characterOffsetFromVisiblePosition(const VisiblePosition&);
UChar32 characterAfter(const CharacterOffset&);
UChar32 characterBefore(const CharacterOffset&);
CharacterOffset characterOffsetForNodeAndOffset(Node&, int, TraverseOption = TraverseOptionDefault);
enum class NeedsContextAtParagraphStart : bool { No, Yes };
CharacterOffset previousBoundary(const CharacterOffset&, BoundarySearchFunction, NeedsContextAtParagraphStart = NeedsContextAtParagraphStart::No);
CharacterOffset nextBoundary(const CharacterOffset&, BoundarySearchFunction);
CharacterOffset startCharacterOffsetOfWord(const CharacterOffset&, EWordSide = RightWordIfOnBoundary);
CharacterOffset endCharacterOffsetOfWord(const CharacterOffset&, EWordSide = RightWordIfOnBoundary);
CharacterOffset startCharacterOffsetOfParagraph(const CharacterOffset&, EditingBoundaryCrossingRule = CannotCrossEditingBoundary);
CharacterOffset endCharacterOffsetOfParagraph(const CharacterOffset&, EditingBoundaryCrossingRule = CannotCrossEditingBoundary);
CharacterOffset startCharacterOffsetOfSentence(const CharacterOffset&);
CharacterOffset endCharacterOffsetOfSentence(const CharacterOffset&);
CharacterOffset characterOffsetForPoint(const IntPoint&);
LayoutRect localCaretRectForCharacterOffset(RenderObject*&, const CharacterOffset&);
bool shouldSkipBoundary(const CharacterOffset&, const CharacterOffset&);
private:
AccessibilityObject* rootWebArea();
// The AX focus is more finegrained than the notion of focused Node. This method handles those cases where the focused AX object is a descendant or a sub-part of the focused Node.
AccessibilityObject* focusedObjectForNode(Node*);
static AccessibilityObject* focusedImageMapUIElement(HTMLAreaElement*);
AXID getAXID(AccessibilityObject*);
AXID generateNewObjectID() const;
void notificationPostTimerFired();
void liveRegionChangedNotificationPostTimerFired();
void focusCurrentModal();
void performCacheUpdateTimerFired();
void postTextStateChangeNotification(AccessibilityObject*, const AXTextStateChangeIntent&, const VisibleSelection&);
bool enqueuePasswordValueChangeNotification(AccessibilityObject*);
void passwordNotificationPostTimerFired();
void handleChildrenChanged(AccessibilityObject&);
void handleAllDeferredChildrenChanged();
void handleRoleChanged(Element*, const AtomString&, const AtomString&);
void handleRoleDescriptionChanged(Element*);
void handleMenuOpened(Node*);
void handleLiveRegionCreated(Node*);
void handleMenuItemSelected(Node*);
void handleRowCountChanged(AccessibilityObject*, Document*);
void handleAttributeChange(Element*, const QualifiedName&, const AtomString&, const AtomString&);
bool shouldProcessAttributeChange(Element*, const QualifiedName&);
void selectedChildrenChanged(Node*);
void selectedChildrenChanged(RenderObject*);
void handleScrollbarUpdate(ScrollView&);
void handleActiveDescendantChange(Element&, const AtomString&, const AtomString&);
void handleAriaExpandedChange(Node*);
enum class UpdateModal : bool { No, Yes };
void handleFocusedUIElementChanged(Node* oldFocusedNode, Node* newFocusedNode, UpdateModal = UpdateModal::Yes);
void handleMenuListValueChanged(Element&);
void handleTextChanged(AccessibilityObject*);
void handleRecomputeCellSlots(AccessibilityTable&);
// aria-modal or modal <dialog> related
bool isModalElement(Element&) const;
void findModalNodes();
enum class WillRecomputeFocus : bool { No, Yes };
void updateCurrentModalNode(WillRecomputeFocus = WillRecomputeFocus::No);
bool isNodeVisible(Node*) const;
bool modalElementHasAccessibleContent(Element&);
// Relationships between objects.
static Vector<QualifiedName>& relationAttributes();
static AXRelationType attributeToRelationType(const QualifiedName&);
enum class AddingSymmetricRelation : bool { No, Yes };
static AXRelationType symmetricRelation(AXRelationType);
void addRelation(Element*, Element*, AXRelationType);
void addRelation(AccessibilityObject*, AccessibilityObject*, AXRelationType, AddingSymmetricRelation = AddingSymmetricRelation::No);
void removeRelationByID(AXID originID, AXID targetID, AXRelationType);
void addRelations(Element&, const QualifiedName&);
void removeRelations(Element&, AXRelationType);
void updateRelationsIfNeeded();
void updateRelationsForTree(ContainerNode&);
void relationsNeedUpdate(bool);
HashMap<AXID, AXRelations> relations();
const HashSet<AXID>& relationTargetIDs();
// Object creation.
Ref<AccessibilityObject> createObjectFromRenderer(RenderObject*);
CheckedRef<Document> m_document;
const std::optional<PageIdentifier> m_pageID; // constant for object's lifetime.
OptionSet<ActivityState> m_pageActivityState;
HashMap<AXID, RefPtr<AccessibilityObject>> m_objects;
// The pointers in these mapping HashMaps should never be dereferenced.
HashMap<RenderObject*, AXID> m_renderObjectMapping;
HashMap<Widget*, AXID> m_widgetObjectMapping;
HashMap<Node*, AXID> m_nodeObjectMapping;
// The pointers in this HashSet should never be dereferenced.
ListHashSet<Node*> m_textMarkerNodes;
std::unique_ptr<AXComputedObjectAttributeCache> m_computedObjectAttributeCache;
#if ENABLE(ACCESSIBILITY)
WEBCORE_EXPORT static bool gAccessibilityEnabled;
WEBCORE_EXPORT static bool gAccessibilityEnhancedUserInterfaceEnabled;
static bool gForceDeferredSpellChecking;
#else
static constexpr bool gAccessibilityEnabled { false };
static constexpr bool gAccessibilityEnhancedUserInterfaceEnabled { false };
static constexpr bool gForceDeferredSpellChecking { false };
#endif
HashSet<AXID> m_idsInUse;
Timer m_notificationPostTimer;
Vector<std::pair<RefPtr<AccessibilityObject>, AXNotification>> m_notificationsToPost;
Timer m_passwordNotificationPostTimer;
ListHashSet<RefPtr<AccessibilityObject>> m_passwordNotificationsToPost;
Timer m_liveRegionChangedPostTimer;
ListHashSet<RefPtr<AccessibilityObject>> m_liveRegionObjectsSet;
WeakPtr<Element, WeakPtrImplWithEventTargetData> m_currentModalElement;
// Multiple aria-modals behavior is undefined by spec. We keep them sorted based on DOM order here.
Vector<WeakPtr<Element, WeakPtrImplWithEventTargetData>> m_modalElements;
bool m_modalNodesInitialized { false };
bool m_isRetrievingCurrentModalNode { false };
Timer m_performCacheUpdateTimer;
AXTextStateChangeIntent m_textSelectionIntent;
HashSet<AXID> m_deferredRemovedObjects;
WeakHashSet<Element, WeakPtrImplWithEventTargetData> m_deferredRecomputeIsIgnoredList;
WeakHashSet<HTMLTableElement, WeakPtrImplWithEventTargetData> m_deferredRecomputeTableIsExposedList;
WeakHashSet<AccessibilityTable> m_deferredRecomputeTableCellSlotsList;
WeakListHashSet<Node, WeakPtrImplWithEventTargetData> m_deferredTextChangedList;
WeakHashSet<Element, WeakPtrImplWithEventTargetData> m_deferredSelectedChildredChangedList;
ListHashSet<RefPtr<AccessibilityObject>> m_deferredChildrenChangedList;
WeakListHashSet<Node, WeakPtrImplWithEventTargetData> m_deferredNodeAddedOrRemovedList;
WeakHashSet<Element, WeakPtrImplWithEventTargetData> m_deferredModalChangedList;
WeakHashSet<Element, WeakPtrImplWithEventTargetData> m_deferredMenuListChange;
WeakHashSet<ScrollView> m_deferredScrollbarUpdateChangeList;
WeakHashMap<Element, String, WeakPtrImplWithEventTargetData> m_deferredTextFormControlValue;
Vector<AttributeChange> m_deferredAttributeChange;
std::optional<std::pair<WeakPtr<Node, WeakPtrImplWithEventTargetData>, WeakPtr<Node, WeakPtrImplWithEventTargetData>>> m_deferredFocusedNodeChange;
#if ENABLE(ACCESSIBILITY_ISOLATED_TREE)
Timer m_buildIsolatedTreeTimer;
bool m_deferredRegenerateIsolatedTree { false };
Ref<AXGeometryManager> m_geometryManager;
#endif
bool m_isSynchronizingSelection { false };
bool m_performingDeferredCacheUpdate { false };
double m_loadingProgress { 0 };
// Relationships between objects.
HashMap<AXID, AXRelations> m_relations;
bool m_relationsNeedUpdate { true };
HashSet<AXID> m_relationTargets;
#if USE(ATSPI)
ListHashSet<RefPtr<AXCoreObject>> m_deferredParentChangedList;
#endif
};
class AXAttributeCacheEnabler
{
public:
explicit AXAttributeCacheEnabler(AXObjectCache *cache);
~AXAttributeCacheEnabler();
#if ENABLE(ACCESSIBILITY)
private:
AXObjectCache* m_cache;
bool m_wasAlreadyCaching { false };
#endif
};
bool nodeHasRole(Node*, StringView role);
bool nodeHasGridRole(Node*);
bool nodeHasCellRole(Node*);
// This will let you know if aria-hidden was explicitly set to false.
bool isNodeAriaVisible(Node*);
#if !ENABLE(ACCESSIBILITY)
inline AccessibilityObjectInclusion AXComputedObjectAttributeCache::getIgnored(AXID) const { return AccessibilityObjectInclusion::DefaultBehavior; }
inline AccessibilityReplacedText::AccessibilityReplacedText(const VisibleSelection&) { }
inline void AccessibilityReplacedText::postTextStateChangeNotification(AXObjectCache*, AXTextEditType, const String&, const VisibleSelection&) { }
inline void AXComputedObjectAttributeCache::setIgnored(AXID, AccessibilityObjectInclusion) { }
inline AXObjectCache::AXObjectCache(Document& document) : m_document(document), m_notificationPostTimer(*this, &AXObjectCache::notificationPostTimerFired), m_passwordNotificationPostTimer(*this, &AXObjectCache::passwordNotificationPostTimerFired), m_liveRegionChangedPostTimer(*this, &AXObjectCache::liveRegionChangedNotificationPostTimerFired), m_performCacheUpdateTimer(*this, &AXObjectCache::performCacheUpdateTimerFired) { }
inline AXObjectCache::~AXObjectCache() { }
inline AccessibilityObject* AXObjectCache::get(RenderObject*) { return nullptr; }
inline AccessibilityObject* AXObjectCache::get(Node*) { return nullptr; }
inline AccessibilityObject* AXObjectCache::get(Widget*) { return nullptr; }
inline AccessibilityObject* AXObjectCache::getOrCreate(RenderObject*) { return nullptr; }
inline AccessibilityObject* AXObjectCache::create(AccessibilityRole) { return nullptr; }
inline AccessibilityObject* AXObjectCache::getOrCreate(Node*) { return nullptr; }
inline AccessibilityObject* AXObjectCache::getOrCreate(Widget*) { return nullptr; }
inline AXCoreObject* AXObjectCache::rootObject() { return nullptr; }
inline AccessibilityObject* AXObjectCache::rootObjectForFrame(LocalFrame*) { return nullptr; }
inline AccessibilityObject* AXObjectCache::focusedObjectForPage(const Page*) { return nullptr; }
inline void AXObjectCache::enableAccessibility() { }
inline void AXObjectCache::setForceDeferredSpellChecking(bool) { }
inline void AXObjectCache::disableAccessibility() { }
inline void AXObjectCache::setEnhancedUserInterfaceAccessibility(bool) { }
inline bool nodeHasRole(Node*, StringView) { return false; }
inline bool nodeHasGridRole(Node*) { return false; }
inline bool nodeHasCellRole(Node*) { return false; }
inline void AXObjectCache::startCachingComputedObjectAttributesUntilTreeMutates() { }
inline void AXObjectCache::stopCachingComputedObjectAttributes() { }
inline bool isNodeAriaVisible(Node*) { return true; }
inline const Element* AXObjectCache::rootAXEditableElement(const Node*) { return nullptr; }
inline Node* AXObjectCache::modalNode() { return nullptr; }
inline void AXObjectCache::attachWrapper(AccessibilityObject*) { }
inline void AXObjectCache::checkedStateChanged(Node*) { }
inline void AXObjectCache::autofillTypeChanged(Node*) { }
inline void AXObjectCache::childrenChanged(Node*, Node*) { }
inline void AXObjectCache::childrenChanged(RenderObject*, RenderObject*) { }
inline void AXObjectCache::childrenChanged(AccessibilityObject*) { }
inline void AXObjectCache::onSelectedChanged(Node*) { }
inline void AXObjectCache::onTextSecurityChanged(HTMLInputElement&) { }
inline void AXObjectCache::onTitleChange(Document&) { }
inline void AXObjectCache::onValidityChange(Element&) { }
inline void AXObjectCache::onTextCompositionChange(Node&, CompositionState, bool) { }
inline void AXObjectCache::valueChanged(Element*) { }
inline void AXObjectCache::onFocusChange(Node*, Node*) { }
inline void AXObjectCache::onPageActivityStateChange(OptionSet<ActivityState>) { }
inline void AXObjectCache::onPopoverTargetToggle(const HTMLFormControlElement&) { }
inline void AXObjectCache::onScrollbarFrameRectChange(const Scrollbar&) { }
inline void AXObjectCache::deferRecomputeIsIgnoredIfNeeded(Element*) { }
inline void AXObjectCache::deferRecomputeIsIgnored(Element*) { }
inline void AXObjectCache::deferTextChangedIfNeeded(Node*) { }
inline void AXObjectCache::deferSelectedChildrenChangedIfNeeded(Element&) { }
inline void AXObjectCache::deferTextReplacementNotificationForTextControl(HTMLTextFormControlElement&, const String&) { }
inline void AXObjectCache::deferRecomputeTableCellSlots(AccessibilityTable&) { }
#if !PLATFORM(COCOA) && !USE(ATSPI)
inline void AXObjectCache::detachWrapper(AXCoreObject*, AccessibilityDetachmentType) { }
#endif
inline void AXObjectCache::focusCurrentModal() { }
inline void AXObjectCache::performCacheUpdateTimerFired() { }
inline void AXObjectCache::frameLoadingEventNotification(LocalFrame*, AXLoadingEvent) { }
inline void AXObjectCache::frameLoadingEventPlatformNotification(AccessibilityObject*, AXLoadingEvent) { }
inline void AXObjectCache::handleAriaExpandedChange(Node*) { }
inline void AXObjectCache::deferModalChange(Element*) { }
inline void AXObjectCache::handleAllDeferredChildrenChanged() { }
inline void AXObjectCache::handleRoleChanged(AccessibilityObject*) { }
inline void AXObjectCache::deferAttributeChangeIfNeeded(Element*, const QualifiedName&, const AtomString&, const AtomString&) { }
inline void AXObjectCache::handleAttributeChange(Element*, const QualifiedName&, const AtomString&, const AtomString&) { }
inline bool AXObjectCache::shouldProcessAttributeChange(Element*, const QualifiedName&) { return false; }
inline void AXObjectCache::handleFocusedUIElementChanged(Node*, Node*, UpdateModal) { }
inline void AXObjectCache::handleScrollbarUpdate(ScrollView&) { }
inline void AXObjectCache::onScrollbarUpdate(ScrollView*) { }
inline void AXObjectCache::handleScrolledToAnchor(const Node*) { }
inline void AXObjectCache::liveRegionChangedNotificationPostTimerFired() { }
inline void AXObjectCache::notificationPostTimerFired() { }
inline Vector<RefPtr<AXCoreObject>> AXObjectCache::objectsForIDs(const Vector<AXID>&) const { return { }; }
inline void AXObjectCache::passwordNotificationPostTimerFired() { }
inline void AXObjectCache::performDeferredCacheUpdate() { }
inline void AXObjectCache::postLiveRegionChangeNotification(AccessibilityObject*) { }
inline void AXObjectCache::postNotification(AccessibilityObject*, Document*, AXNotification, PostTarget) { }
inline void AXObjectCache::postNotification(Node*, AXNotification, PostTarget) { }
inline void AXObjectCache::postNotification(RenderObject*, AXNotification, PostTarget) { }
inline void AXObjectCache::postPlatformNotification(AXCoreObject*, AXNotification) { }
inline void AXObjectCache::postTextReplacementNotification(Node*, AXTextEditType, const String&, AXTextEditType, const String&, const VisiblePosition&) { }
inline void AXObjectCache::postTextReplacementNotificationForTextControl(HTMLTextFormControlElement&, const String&, const String&) { }
inline void AXObjectCache::postTextStateChangeNotification(Node*, AXTextEditType, const String&, const VisiblePosition&) { }
inline void AXObjectCache::postTextStateChangeNotification(Node*, const AXTextStateChangeIntent&, const VisibleSelection&) { }
inline void AXObjectCache::recomputeIsIgnored(RenderObject*) { }
inline void AXObjectCache::handleTextChanged(AccessibilityObject*) { }
inline void AXObjectCache::handleRecomputeCellSlots(AccessibilityTable&) { }
inline void AXObjectCache::onRendererCreated(Element&) { }
inline void AXObjectCache::updateLoadingProgress(double) { }
inline SimpleRange AXObjectCache::rangeForNodeContents(Node& node) { return makeRangeSelectingNodeContents(node); }
inline std::optional<Vector<AXID>> AXObjectCache::relatedObjectIDsFor(const AXCoreObject&, AXRelationType) { return std::nullopt; }
inline void AXObjectCache::updateRelations(Element&, const QualifiedName&) { }
inline void AXObjectCache::remove(AXID) { }
inline void AXObjectCache::remove(RenderObject*) { }
inline void AXObjectCache::remove(Node&) { }
inline void AXObjectCache::remove(Widget*) { }
inline void AXObjectCache::selectedChildrenChanged(RenderObject*) { }
inline void AXObjectCache::selectedChildrenChanged(Node*) { }
inline void AXObjectCache::setIsSynchronizingSelection(bool) { }
inline void AXObjectCache::setTextSelectionIntent(const AXTextStateChangeIntent&) { }
inline std::optional<SimpleRange> AXObjectCache::rangeForUnorderedCharacterOffsets(const CharacterOffset&, const CharacterOffset&) { return std::nullopt; }
inline IntRect AXObjectCache::absoluteCaretBoundsForCharacterOffset(const CharacterOffset&) { return IntRect(); }
inline CharacterOffset AXObjectCache::characterOffsetForIndex(int, const AXCoreObject*) { return CharacterOffset(); }
inline CharacterOffset AXObjectCache::startOrEndCharacterOffsetForRange(const SimpleRange&, bool, bool) { return CharacterOffset(); }
inline CharacterOffset AXObjectCache::endCharacterOffsetOfLine(const CharacterOffset&) { return CharacterOffset(); }
inline CharacterOffset AXObjectCache::nextCharacterOffset(const CharacterOffset&, bool) { return CharacterOffset(); }
inline CharacterOffset AXObjectCache::previousCharacterOffset(const CharacterOffset&, bool) { return CharacterOffset(); }
inline std::optional<TextMarkerData> AXObjectCache::textMarkerDataForVisiblePosition(const VisiblePosition&) { return std::nullopt; }
inline TextMarkerData AXObjectCache::textMarkerDataForCharacterOffset(const CharacterOffset&) { return { }; }
inline VisiblePosition AXObjectCache::visiblePositionForTextMarkerData(const TextMarkerData&) { return { }; }
inline VisiblePosition AXObjectCache::visiblePositionFromCharacterOffset(const CharacterOffset&) { return { }; }
#if PLATFORM(COCOA)
inline void AXObjectCache::postTextStateChangePlatformNotification(AccessibilityObject*, const AXTextStateChangeIntent&, const VisibleSelection&) { }
inline void AXObjectCache::postTextStateChangePlatformNotification(AccessibilityObject*, AXTextEditType, const String&, const VisiblePosition&) { }
inline void AXObjectCache::postTextReplacementPlatformNotification(AccessibilityObject*, AXTextEditType, const String&, AXTextEditType, const String&, const VisiblePosition&) { }
#else
inline AXTextChange AXObjectCache::textChangeForEditType(AXTextEditType) { return AXTextInserted; }
inline void AXObjectCache::nodeTextChangePlatformNotification(AccessibilityObject*, AXTextChange, unsigned, const String&) { }
#endif
inline AXTreeData AXObjectCache::treeData() { return { }; }
inline AXAttributeCacheEnabler::AXAttributeCacheEnabler(AXObjectCache*) { }
inline AXAttributeCacheEnabler::~AXAttributeCacheEnabler() { }
#endif // !ENABLE(ACCESSIBILITY)
WTF::TextStream& operator<<(WTF::TextStream&, AXObjectCache::AXNotification);
} // namespace WebCore
|