Status: FAIL | Duration: 12ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-backgrounds/background-clip-color-repaint.html
<!DOCTYPE html> <html class="reftest-wait"> <meta charset="utf-8"> <title>CSS Backgrounds and Borders: background-clip color background repaint</title> <link rel="author" title="Rune Lillesveen" href="mailto:rune@opera.com"> <link rel="match" href="background-clip-color-repaint-ref.html"> <link rel="help" href="https://drafts.csswg.org/css-backgrounds/#the-background-clip"> <style> #outer { width: 150px; height: 150px; background-color: red; } #inner { border: 30px dashed green; padding: 30px; width: 30px; height: 30px; background-color: green; background-clip: content-box; } </style> <p>There should be a green square below.</p> <div id="outer"> <div id="inner"></div> </div> <script> requestAnimationFrame(function(){ requestAnimationFrame(function(){ inner.style.backgroundClip = "border-box"; document.documentElement.classList.remove("reftest-wait"); }); }); </script>
/css/css-backgrounds/background-clip-color-repaint-ref.html
<!DOCTYPE html> <meta charset="utf-8"> <title>CSS Test Reference</title> <link rel="author" title="Rune Lillesveen" href="mailto:rune@opera.com"> <p>There should be a green square below.</p> <div style="background-color:green;width:150px;height:150px"></div>