blob: 10297f81766ac9170b69f13d52b7ff971305d1d3 [file] [log] [blame]
<!-- Based on fast/repaint/multicol-with-inline.html -->
<!DOCTYPE html>
<script src="resources/paint-invalidation-test.js"></script>
<script>
onload = runPaintInvalidationTest;
window.expectedPaintInvalidationObjects = [
"LayoutInline SPAN id='target'",
"LayoutText #text",
"InlineTextBox 'PASS'",
];
function paintInvalidationTest() {
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; color:green;">
<br>
<br>
<br>
<span id="target" style="visibility:hidden;">PASS</span>
</div>
<p>A green PASS should be seen above.</p>