Status: FAIL | Duration: 15ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-backgrounds/background-origin/origin-content-box.html
<!doctype html> <html> <head> <title>CSS Backgrounds Test: background-origin:content-box</title> <link rel="author" title="finscn" href="mailto:finscn@gmail.com" > <link rel="help" href="http://www.w3.org/TR/css3-background/#the-background-origin" > <meta name="flags" content=""> <link rel="match" href="../reference/origin-content-box-ref.html"> <meta charset="utf-8"> <style type="text/css"> div { border : 16px solid rgba(60,150,255,0.4); width : 450px; height : 224px; padding : 16px; margin-top : 8px; background-image : url("support/yellow-orange-blue-160x160.png"); background-origin : content-box; } .no-repeat { background-repeat : no-repeat; } .repeat { background-repeat : repeat; } </style> </head> <body> <div class="no-repeat"></div> <div class="repeat"></div> </body> </html>
/css/css-backgrounds/reference/origin-content-box-ref.html
<!DOCTYPE html> <meta charset="UTF-8"> <title>CSS Reftest reference</title> <link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/"> <style> div { display: inline-block; vertical-align: bottom; } img { padding-left: 16px; padding-top: 16px; } div.light-blue-border { border: 16px solid rgba(60, 150, 255, 0.4); height: 256px; width: 482px; } </style> <div class="light-blue-border"><img src="../background-origin/support/yellow-orange-blue-160x160.png" alt="Image download support must be enabled"></div><br> <div class="light-blue-border" style="background-image: url('../background-origin/support/yellow-orange-blue-160x160.png'); background-position: 16px 16px; margin-top: 8px;"></div>