Changeset 286015 in webkit
- Timestamp:
- Nov 18, 2021, 10:55:49 AM (5 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
accessibility/win/AXObjectCacheWin.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r286012 r286015 1 2021-11-18 Christopher Reid <c29reid@uwaterloo.ca> 2 3 [Win] Build fix after r285991 4 https://bugs.webkit.org/show_bug.cgi?id=233321 5 6 Unreviewed build fix. 7 8 * accessibility/win/AXObjectCacheWin.cpp: 9 1 10 2021-11-18 Chris Dumez <cdumez@apple.com> 2 11 -
trunk/Source/WebCore/accessibility/win/AXObjectCacheWin.cpp
r285991 r286015 118 118 // element, not the index of a child element. 119 119 120 ASSERT(obj->objectID() >= 1);121 ASSERT(obj->objectID() <= std::numeric_limits<LONG>::max());120 ASSERT(obj->objectID().toUInt64() >= 1); 121 ASSERT(obj->objectID().toUInt64() <= std::numeric_limits<LONG>::max()); 122 122 123 123 NotifyWinEvent(msaaEvent, page->chrome().platformPageClient(), OBJID_CLIENT, -static_cast<LONG>(obj->objectID().toUInt64()));
Note:
See TracChangeset
for help on using the changeset viewer.