Status: FAIL | Duration: 11ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-transforms/transform-transformed-tr-contains-fixed-position.html
<!DOCTYPE html> <html> <head> <title>CSS Test (Transforms): Transformed tr contains fixed position elements.</title> <link rel="author" title="Vladimir Levin" href="mailto:vmpstr@chromium.org"> <link rel="help" href="http://www.w3.org/TR/css-transforms-1/#transform-rendering"> <meta name="assert" content='This test ensures that transformed tr element is a containing block for fixed position elements.'> <link rel="match" href="transform-transformed-tr-contains-fixed-position-ref.html"> <style> table, tbody, tr, td { margin: 0; padding: 0; border-spacing: 0; } .pad { height: 50px; } .container { transform: translateX(20px) rotate(45deg); transform-origin: left; } .fixed { position: fixed; top: 15px; left: 10px; background-color: lightblue; } </style> </head> <body> <div class='pad'></div> <table> <tr class='container'> <td>some text<div class='fixed'>fixed</div> </td> </tr> </table> </body> </html>
/css/css-transforms/transform-transformed-tr-contains-fixed-position-ref.html
<!DOCTYPE html> <html> <head> <title>CSS Test (Transforms): Transformed tr contains fixed position elements reference.</title> <link rel="author" title="Vladimir Levin" href="mailto:vmpstr@chromium.org"> <style> body { overflow: hidden; } .pad { height: 50px; } .container { transform: translateX(20px) rotate(45deg); transform-origin: left; } .fixed { position: fixed; top: 15px; left: 10px; background-color: lightblue; } </style> </head> <body> <div class='pad'></div> <div class='container'>some text<div class='fixed'>fixed</div> </div> </body> </html>