accessibility/selected-state-changed-notifications.html Added in r280633 (240246@main) The test expects the notification AXSelectedCellsChanged to be emitted to increase the count, which never happens. This causes the first waitfor call to hang. Inspecting the test, only the following events are emitted: AXChildrenAdded AXChildrenAdded AXChildrenAdded AXChildrenAdded AXChildrenAdded AXChildrenAdded AXChildrenAdded AXChildrenAdded AXChildrenAdded AXChildrenAdded AXLoadComplete AXElementBusyChanged In a naive attempt to mimic the mac-specific parts of the patch, I tried adding the following to AXObjectCache::postPlatformNotification, but nothing seems to have changed: case AXSelectedStateChanged: atk_object_notify_state_change(axObject, ATK_STATE_SELECTED, coreObject->isSelected()); break;
<rdar://problem/81695884>