blob: 91896e6ee5d3db047573b7be8bd3c1d301c02269 [file] [log] [blame]
<!DOCTYPE html>
<html>
<body onload="runTest()">
<div style="width: 15px;">
<script>
function runTest()
{
document.body.offsetTop;
var container = document.getElementById('panel');
container.style.position = 'relative';
document.getElementById('test1').style.setProperty("-webkit-column-count", "3");
document.getElementById('test2').style.position = 'absolute';
}
</script>
<div id="panel">
<div id="test1">
<img style="float: left; width: 15px; height: 200px; background-color: silver;">
</div>
<div id="test2" style="font-family: Ahem;">
<a><p>A B C D</p>
</div>
</div>
</div>
</body>
</html>