Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/rendering/non-replaced-elements/the-fieldset-and-legend-elements/fieldset-multicol-only-column-width.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>fieldset multicol with auto count, non-auto width</title>
<link rel="help" href="https://html.spec.whatwg.org/multipage/rendering.html#the-fieldset-and-legend-elements">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<style>
#test { margin: 0; padding: 0; border: none }
#test, #ref { width:500px; column-width:100px; }
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>