chromium/third_party/blink/web_tests/compositing/iframes/invisible-nested-iframe.html

<!DOCTYPE html>

<html>
<head>
  <style type="text/css" media="screen">
    iframe {
        border: 10px solid black;
        padding: 5px;
        height: 150px;
        width: 300px;
        -webkit-box-shadow: 0 0 20px black;
    }
    .box {
        height: 200px;
        width: 200px;
        margin: 10px;
        padding: 5px;
        background-color: blue;
        will-change: transform;
        overflow:hidden;
    }
    .box:hover {
        transform: none;
    }
  </style>
</head>
<body>

    <!-- The nested iframe inside invisible iframe should not set itself as the root layer. -->
    <div style="display: none;">
        <iframe src="resources/intermediate-frame.html"></iframe>
    </div>
    <div class="box">
    </div>
</body>
</html>