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
<metaname=assertcontent="Paint containment doesn't apply to non-atomic inline elements so they don't act as containing block for absolutely positioned descendants.">
<style>
#containing-block {
position: relative;
background: red;
width:100px;
height:100px;
}
#contain-paint {
contain: paint;
}
#abspos {
position: absolute;
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>