blob: 0dc7efbb0bfaf8901df40e0c8df047d7c7b7296a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!DOCTYPE html>
<script src="resources/text-based-repaint.js"></script>
<script>
if (window.internals)
onload = runRepaintTest;
else
onclick = repaintTest;
function repaintTest() {
var target = document.getElementById('target');
target.style.visibility = 'visible';
}
</script>
<div style="-webkit-columns:4; -webkit-column-gap:10px; column-fill:auto; width:630px; height:20px; font:20px/1 ahem; color:green;">
<br>
<br>
<br>
<div id="target" style="visibility:hidden;">PASS</div>
</div>
<p>A green rectangle should be seen above (if tested manually, you need to click first).</p>
|