Status: FAIL | Duration: 13ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-transforms/transformed-rotateX-3.html
<!DOCTYPE html> <html> <head> <title>CSS Transforms API Test: transform rotateX</title> <link rel="author" title="loveky" href="mailto:ylzcylx@gmail.com"> <link rel="help" href="http://www.w3.org/TR/css-transforms-1/#transform-property"> <link rel="match" href="reference/transformed-rotateX-3-ref.html"> <meta name="assert" content="The transformed div should rotateX by 180 degrees"> <style> div { height: 150px; width: 150px; } .container { background-color: red; } .transformed { transform-origin: top left; transform: rotateX(180deg); background-color: green; position: relative; top: 150px; } </style> </head> <body> <p>You should only see a GREEN box if this test passes!</p> <div class="container"> <div class="transformed"> </div> </div> </body> </html>
/css/css-transforms/reference/transformed-rotateX-3-ref.html
<!DOCTYPE html> <html> <head> <title>CSS Transforms API Test: transform rotateX</title> <link rel="author" title="loveky" href="mailto:ylzcylx@gmail.com"> <style> div { height: 150px; width: 150px; } .container { background-color: green; } </style> </head> <body> <p>You should only see a GREEN box if this test passes!</p> <div class="container"> </div> </body> </html>