chromium/third_party/blink/web_tests/external/wpt/css/css-transforms/transform-iframe-scroll-position-ref.html

<!DOCTYPE html>
<html>
  <head>
    <title>CSS Test (Transforms): iframe scroll position</title>
    <link rel="author" title="Martin Robinson" href="mailto:[email protected]">
    <style>
        #iframe {
            border: 0;
            width: 50px;
            height: 50px;
            border: solid;
        }

        #iframe div {
            width: 25px;
            height: 50px;
            float: left;
        }

        .rotate {
            transform: rotate(90deg);
        }
    </style>
    <body onload="onLoad();">
        <div id="iframe">
            <div style="background: blue;"></div>
            <div style="background: green;"></div>
        </div>
    </body>
</html>