Title: [286015] trunk/Source/WebCore
Revision
286015
Author
[email protected]
Date
2021-11-18 10:55:49 -0800 (Thu, 18 Nov 2021)

Log Message

[Win] Build fix after r285991
https://bugs.webkit.org/show_bug.cgi?id=233321

Unreviewed build fix.

Patch by Christopher Reid <[email protected]> on 2021-11-18

* accessibility/win/AXObjectCacheWin.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (286014 => 286015)


--- trunk/Source/WebCore/ChangeLog	2021-11-18 18:42:05 UTC (rev 286014)
+++ trunk/Source/WebCore/ChangeLog	2021-11-18 18:55:49 UTC (rev 286015)
@@ -1,3 +1,12 @@
+2021-11-18  Christopher Reid  <[email protected]>
+
+        [Win] Build fix after r285991
+        https://bugs.webkit.org/show_bug.cgi?id=233321
+
+        Unreviewed build fix.
+
+        * accessibility/win/AXObjectCacheWin.cpp:
+
 2021-11-18  Chris Dumez  <[email protected]>
 
         Drop ServiceWorkerClientIdentifier / DocumentIdentifier and use ScriptExecutionContextIdentifier instead

Modified: trunk/Source/WebCore/accessibility/win/AXObjectCacheWin.cpp (286014 => 286015)


--- trunk/Source/WebCore/accessibility/win/AXObjectCacheWin.cpp	2021-11-18 18:42:05 UTC (rev 286014)
+++ trunk/Source/WebCore/accessibility/win/AXObjectCacheWin.cpp	2021-11-18 18:55:49 UTC (rev 286015)
@@ -117,8 +117,8 @@
     // negate the AXID so we know that the caller is passing the ID of an
     // element, not the index of a child element.
 
-    ASSERT(obj->objectID() >= 1);
-    ASSERT(obj->objectID() <= std::numeric_limits<LONG>::max());
+    ASSERT(obj->objectID().toUInt64() >= 1);
+    ASSERT(obj->objectID().toUInt64() <= std::numeric_limits<LONG>::max());
 
     NotifyWinEvent(msaaEvent, page->chrome().platformPageClient(), OBJID_CLIENT, -static_cast<LONG>(obj->objectID().toUInt64()));
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to