Status: PASS | Duration: 13ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-transforms/transform-display-001.html
<!DOCTYPE html> <html> <head> <title>CSS Test (Transforms): Inline-Block</title> <link rel="author" title="Aryeh Gregor" href="mailto:ayg@aryeh.name"> <link rel="help" href="http://www.w3.org/TR/css-transforms-1/#transformable-element"> <meta name="assert" content='Inline-blocks are atomic inline-level elements, so should transform the same as blocks.'> <link rel="match" href="transform-display-ref.html"> <link rel="mismatch" href="transform-display-notref.html"> <style> div { width: 100px; height: 100px; transform: rotate(180deg); display: inline-block; } </style> </head> <body> <div>This is some rotated text</div> </body> </html>
/css/css-transforms/transform-display-ref.html
<!DOCTYPE html> <html> <head> <title>CSS Reftest Reference</title> <link rel="author" title="Aryeh Gregor" href="mailto:ayg@aryeh.name"> <style> div { width: 100px; height: 100px; transform: rotate(180deg); } </style> </head> <body> <div>This is some rotated text</div> </body> </html>