chromium/third_party/blink/web_tests/external/wpt/css/css-transforms/transform-compound-notref-1.html

<!DOCTYPE html>
<html>
  <head>
    <title>CSS Reftest Reference</title>
    <link rel="author" title="Keith Schwarz" href="mailto:[email protected]">
    <link rel="author" title="Aryeh Gregor" href="mailto:[email protected]">
    <style>
      body {
        overflow: hidden;
      }
      div {
        transform-origin: top left;
      }
      body > div {
        position: relative;
        left: 200px;
        top: 0;
      }
      div.test {
        background-color: gold;
        width: 200px;
        height: 100px;
        border: 1px solid black;
      }
    </style>
  </head>
  <body>
    <div>
      <div style="transform: skewX(15deg);">
        <div style="transform: rotate(90deg);">
          <div style="transform: scale(2);">
            <div style="transform: translate(100px);">
              <div class="test">
              </div>
            </div>
          </div>
        </div>
      </div>
    </div>
  </body>
</html>