summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/dynamic/block-flow-split-crash.html
blob: 1511f48b645a04684c1a2e3404a78aa501219c67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<style>
.maybe-colspan:nth-last-child(even) { -webkit-column-span: all; }
</style>
<script>
if (window.testRunner)
  testRunner.dumpAsText();
onload = function() {
  document.getElementById('container').appendChild(document.getElementById('fixed'));
}
</script>
Tests layer structure integrity when block flow is splitted and restructured dynamically.
Should not crash.
<div id="container" style="-webkit-column-count: 2">
  <div class="maybe-colspan"></div>
  <span class="maybe-colspan">
    <div></div>
  </span>
</div>
<div id="fixed" style="position: fixed"></div>