Status: PASS | Duration: 7ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-backgrounds/background-image-centered-with-border-radius.html
<!DOCTYPE html> <html> <head> <title>CSS Background Test: Centered background image with border radius</title> <link rel="author" title="schenney" href="mailto:schenney@chromium.org"> <link rel="help" href="https://www.w3.org/TR/css-backgrounds-3/#the-background-position"> <link rel="match" href="reference/background-image-centered-with-border-radius-ref.html"> <style> span { background: url(support/green-60x60-red-5px-border.png) no-repeat center; border: 5px solid green; border-radius: 5px; box-sizing: border-box; display: inline-block; height: 60px; width: 60px; } </style> </head> <body> <span></span> </body> </html>
/css/css-backgrounds/reference/background-image-centered-with-border-radius-ref.html
<!DOCTYPE html> <html> <head> <title>CSS Background Test Reference</title> <link rel="author" title="schenney" href="mailto:schenney@chromium.org"> <style> span { background-color: green; display: inline-block; height: 60px; width: 60px; border: 5px solid green; border-radius: 5px; box-sizing: border-box; } </style> </head> <body> <span></span> </body> </html>