blob: 52e0970758daeda8cfe806211c2bf0797835a7d2 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<style>
#multicolumn
{
display: block;
-moz-column-width: 0;
-o-column-width: 0;
-webkit-column-width: 0;
column-width: 0;
}
</style>
<script src="../../resources/js-test-pre.js"></script>
<script>
if (window.testRunner)
testRunner.dumpAsText();
</script>
</head>
<body>
<div id="multicolumn"></div>
</body>
<script>
description("Test for column-width property with zero value");
var divElement = document.getElementById("multicolumn");
shouldBe('getComputedStyle(divElement).webkitColumnWidth', '"auto"');
</script>
<script src="../../resources/js-test-post.js"></script>
</html>