An element has `contain: paint`. A child is absolutely positioned with `top: -50px`, placing part of it above the element's box. What does paint containment do to that overflowing child, and what side effect does it have?
.box { contain: paint; }
.child { position: absolute; top: -50px; }