blob: 8fd3d0c06c3e91c51cafb124bb56e3c0fe8667e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<html>
<head>
<script src="resources/text-based-repaint.js"></script>
<script>
function repaintTest()
{
document.getElementById("block").style.height = "100px";
document.getElementById("inline").innerText = "is invisible";
}
</script>
</head>
<body onload="runRepaintTest()">
<div style="visibility: hidden; position: relative;">
<span id="inline">Invisible text</span>
</div>
<div style="visibility: hidden; position: relative;">
<div id="block" style="height: 50px;"></div>
</div>
</body>
</html>
|