summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/rendering/non-replaced-elements/the-fieldset-and-legend-elements/insert-legend-in-multicol-fieldset-crash.html
blob: aad552dbe2ca80ceaf66a180e1ae18c6d2b96708 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<!DOCTYPE html>
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
<link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1211926">
<fieldset id="fieldset">
  <legend id="legend"></legend>
  <div></div>
</fieldset>
<script>
  document.body.offsetTop;
  fieldset.style.columns = "2";
  legend.style.position = "relative";
</script>