You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<meta name=assert content="Paint containment doesn't apply to non-atomic inline elements so they don't act as containing block for fixed positioned descendants.">
<style>
#containing-block {
transform: translateX(0);
background: red;
width: 100px;
height: 100px;
}
#contain-paint {
contain: paint;
}
#fixed {
position: fixed;
bottom: 0;
right: 0;
background: green;
width: 100%;
height: 100%;
}
</style>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>