Status: PASS | Duration: 8ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-ui/translucent-outline.html
<!DOCTYPE html> <title>Outline with translucent color, will-change:transform and negative-z index child</title> <link rel="help" title="7.1. 'outline' property" href="http://www.w3.org/TR/css3-ui/#outline"> <link rel="match" href="translucent-outline-ref.html"> <style>div { will-change: transform; }</style> There should be a square in uniform pale green color. <div style="position: relative; top: 25px; left: 25px; width: 50px; height: 50px; outline: 25px solid rgba(0, 128, 0, 0.5); background: rgba(0, 128, 0, 0.5)"> <div style="position: absolute; width: 10px; height: 10px; z-index: -1"></div> </div>
/css/css-ui/translucent-outline-ref.html
<!DOCTYPE html> There should be a square in uniform pale green color. <div style="width: 100px; height: 100px; background: rgba(0, 128, 0, 0.5)"></div>