https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 5b2846cb5fe342c01a826c893482c7e50c41b072 authored by moz-wptsync-bot on 15 March 2018, 23:08:40 UTC
Port EventSource in Web Workers to WorkerRef,
Tip revision: 5b2846c
transform-transformable-table-row-group.html
<!DOCTYPE html>
<html>
  <head>
    <title>CSS Test (Transforms): Transformability of Table-Row-Group</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-group work as expected.'>
    <link rel="match" href="transform-transformable-table-row-group-ref.html">
    <style>
      body {
        overflow: hidden;
      }
      div {
        display: table-row-group;
        transform: translate(50px, 50px);
      }
    </style>
  </head>
  <body>
    <div>Some text</div>
  </body>
</html>
back to top