summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-multicol/crashtests/multicol-column-change-crash.html
blob: 6f0a05be296162053dbe6bee889e899ee582b6db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html class=test-wait>
<div id="outer" style="column-count: 100;">
  <div id="inner" style="transform: translateY(1px); height:300px;"></div>
  <div id="changeme" style="padding: 100px;"></div>
</div>
<script>
  requestAnimationFrame(function() {
    requestAnimationFrame(function() {
      changeme.style.padding = '0';
      requestAnimationFrame(function() {
        requestAnimationFrame(function() {
          document.documentElement.classList.remove('test-wait');
        });
      });
    });
  });
</script>
</html>