https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 86fb98f2c3ec4e05bc529f19e41465da62052c3a authored by Lukasz Anforowicz on 02 April 2018, 23:48:36 UTC
Make CORB MIME type classification consistent with the web specs.
Tip revision: 86fb98f
transform-transformable-table-row.html
<!DOCTYPE html>
<html>
  <head>
    <title>CSS Test (Transforms): Transformability of Table-Row</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">
    <meta name="assert" content='This tests that transforms specified on a
    table-row work as expected.'>
    <link rel="match" href="transform-transformable-table-row-ref.html">
    <style>
      body {
        overflow: hidden;
      }
      div {
        display: table-row;
        transform: translate(50px, 50px);
      }
    </style>
  </head>
  <body>
    <div>Some text</div>
  </body>
</html>
back to top