chromium/third_party/blink/web_tests/paint/invalidation/position/intermediate-layout-position-expected.html

<html>
<head>
    <title>Test for http://bugs.webkit.org/show_bug.cgi?id=10522</title>
    <style type="text/css">
        .float { float: right; height: 40px; width: 40px; }
        .test { height: 100px; background-color: aliceblue }
    </style>
</head>
<body>
    <div class="test">
        <div class="float"></div>
        <div style="clear: right; background-color: purple; width: 40px; padding: 3px;">
            <div style="height: 20px; width: 0;" id="target">
            </div>
        </div>
    </div>
    
    <div class="test">
        <div class="float"></div>
        <table style="clear: both; background-color: purple;">
            <tr>
                <td id="cell" style="height: 20px; width: 40px;">
                </td>
            </tr>
        </table>
    </div>
</body>
</html>