summaryrefslogtreecommitdiffstats
path: root/layout/base/crashtests/1547391.html
blob: 9339100f4da23b81f5803ff32d3a7b399dbf2426 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<script>
function go() {
  document.body.offsetHeight;
  b.insertAdjacentHTML("afterBegin", a.innerHTML)
}
</script>
<body onload=go()>
  <details id="b" open="true" style="column-count: 1">
    A
    <div id="a" style="column-span: all">
      <!-- this comment is essential to trigger the assertion. -->
    </div>
    B
  </details>
</body>