blob: bc246d279f6fd8d8c486c74ff59d9e2932c88ab3 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<title>auto-height multicol</title>
<script src="../../../resources/js-test.js"></script>
<script>
if (window.testRunner)
testRunner.dumpAsText();
</script>
</head>
<body>
<p>There should be no scrollbar on this page.</p>
<div id="mc" style="-webkit-columns:3; columns:3; overflow:auto; width:500px; orphans:1; widows:1;">
<div style="height:100px;"></div>
</div>
<script>
shouldBe("mc.offsetHeight", "33");
shouldBe("mc.scrollWidth", "500");
</script>
</body>
</html>