chromium/third_party/blink/web_tests/external/wpt/css/css-transforms/transform-transformed-caption-contains-fixed-position-ref.html

<!DOCTYPE html>
<html>
  <head>
    <title>CSS Test (Transforms): Transformed caption contains fixed position elements reference.</title>
    <link rel="author" title="Vladimir Levin" href="mailto:[email protected]">
    <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>