blob: 79cf886110a6a6d1b7c857140400d3a473c651b0 [file] [log] [blame]
<!DOCTYPE html>
<script>
if (window.testRunner)
testRunner.dumpAsText();
onload = function() {
document.getElementById('mc').offsetTop; // trigger layout
document.getElementById('mc').style.webkitColumns = 'auto';
document.getElementById('mc').style.columns = 'auto';
document.getElementById('inline').style.color = 'green';
}
</script>
<p>This test should not crash.</p>
<div id="mc" style="-webkit-columns:3; columns:3;">
<span id="inline">PASS</span>
</div>