Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / repaint / invisible-objects.html
blob8fd3d0c06c3e91c51cafb124bb56e3c0fe8667e5
1 <html>
2 <head>
3 <script src="resources/text-based-repaint.js"></script>
4 <script>
5 function repaintTest()
7 document.getElementById("block").style.height = "100px";
8 document.getElementById("inline").innerText = "is invisible";
10 </script>
11 </head>
12 <body onload="runRepaintTest()">
13 <div style="visibility: hidden; position: relative;">
14 <span id="inline">Invisible text</span>
15 </div>
16 <div style="visibility: hidden; position: relative;">
17 <div id="block" style="height: 50px;"></div>
18 </div>
19 </body>
20 </html>