Status: FAIL | Duration: 9ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-transforms/transform-background-003.html
<!DOCTYPE html> <html> <head> <title>CSS Test (Transforms): Transform of Background Image (flip)</title> <link rel="author" title="Aryeh Gregor" href="mailto:ayg@aryeh.name"> <link rel="help" href="http://www.w3.org/TR/css-transforms-1/#transform-property"> <link rel="reviewer" title="Dirk Schulze" href="mailto:dschulze@adobe.com"> <!-- 2012-04-17 --> <meta name="assert" content="Background images fall within the element's border box, so they need to be transformed along with it."> <meta name="flags" content="svg"> <meta name="fuzzy" content="maxDifference=0-1;totalPixels=0-400"> <link rel="match" href="transform-background-ref-1.html"> <style> div { width: 200px; height: 100px; background: url(support/transform-triangle-down.svg); transform: scale(-1); } </style> </head> <body> <div></div> </body> </html>
/css/css-transforms/transform-background-ref-1.html
<!DOCTYPE html> <html> <head> <title>CSS Reftest Reference</title> <link rel="author" title="Aryeh Gregor" href="mailto:ayg@aryeh.name"> <link rel="reviewer" title="Dirk Schulze" href="mailto:dschulze@adobe.com"> <!-- 2012-04-17 --> <style> div { width: 200px; height: 100px; background: url(support/transform-triangle-up.svg); } </style> </head> <body> <div></div> </body> </html>