Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

  • This WPT test may be referenced by the following Test IDs:
<!DOCTYPE html>
<title>fieldset multicol with auto count, non-auto width</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<style>
#test { margin: 0; padding: 0; border: none }
#test, #ref { width:min-content; column-count:4; }
p { margin: 0 }
</style>
<fieldset id="test">
<p>1</p>
<p>2</p>
<p>3</p>
<p>4</p>
<p>5</p>
</fieldset>
<div id="ref">
<p>1</p>
<p>2</p>
<p>3</p>
<p>4</p>
<p>5</p>
</div>
<script>
test(() => {
assert_equals(getComputedStyle(document.getElementById('test')).height,
getComputedStyle(document.getElementById('ref')).height);
});
</script>