summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/repaint/block-no-inflow-children.html
blob: cdc3240405d3c73c82c987e19e556d54a29c1f43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<body style="margin: 0;" onload="runRepaintTest()">
    <script>
        function repaintTest()
        {
            document.getElementById("target").innerText += " la";
        }
    </script>
    <script src="resources/text-based-repaint.js"></script>
    <div style="height:200px; width:200px">
      <div style="position:absolute">
        <div id="target">La la la</div>
      </div>
    </div>
</body>