summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-multicol/move-with-text-after-paint.html
blob: 1ea3d4b58bce1fe07a57faa05b008e426368925a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<html class="reftest-wait">
  <link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
  <link rel="help" href="https://www.w3.org/TR/css-multicol-1/">
  <link rel="match" href="move-with-text-after-paint-ref.html">
  <div style="columns:3;">
    <div id="container" style="position:relative; top:0;">
      Short loin tri-tip pork belly, tail venison capicola turducken sausage
      pork. Turkey ribeye pork belly chicken chuck, speck shank tail short loin
      bacon tongue prosciutto. Tenderloin pastrami turkey, rump ball tip
      frankfurter ham hock pork chop sausage filet mignon beef hamburger pork
      sirloin speck. Meatball pig pork chop, short loin shankle pork loin flank
      ball tip capicola ham hock pork shank turkey pastrami. Corned beef
      capicola ribeye turkey bresaola, ground round fatback turducken.
    </div>
  </div>

  <script>
    requestAnimationFrame(()=> {
      requestAnimationFrame(()=> {
        container.style.top = "100px";
        document.documentElement.classList.remove("reftest-wait");
      });
    });
  </script>
</html>