StopPropagation doesn't work with PointerCaptureOutEvent

Found out that with PointerCaptureOutEvent neither StopPropagation nor StopImmediatePropagation works.
I have uxml structure like:

parent
----child

Both have events (parent has ClickEvent and child has PointerCaptureOutEvent). If child is triggered I need the parent event to be ignored. It works fine with regular ClickEvent but not with PointerCaptureOutEvent. What should I do or it’s really a bug?

UPD: this doesn’t work with 'PointerUpEvent ’ either