blob: 35dff5f3d14f0e7f47c2e2714bd7eb1cb5998b3e [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>