summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-multicol/crashtests/floated-input-in-inline-next-column.html
blob: 1b84cd3d99a723e33301f87db3a3933ac33c8cf2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html class="reftest-wait">
  <link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
  <link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1451185">
  <div id="container" style="opacity:0.0;">
    <div style="columns:3; orphans:1; widows:1;">
      <br>
      <span><input style="float:right;"></span>
    </div>
  </div>
  <script>
    requestAnimationFrame(()=> {
      requestAnimationFrame(()=> {
        container.style.opacity = "1";
        document.documentElement.classList.remove("reftest-wait");
      });
    });
  </script>
</html>