https://github.com/web-platform-tests/wpt
Raw File
Tip revision: d8ba6d01bab767c9f8825d55e01e6802be81e44e authored by Robert Ma on 21 December 2018, 20:58:11 UTC
Produce a valid report when no tests are affected
Tip revision: d8ba6d0
multicol-under-vertical-rl-scroll-ref.html
<!DOCTYPE html>
<title>Multicol under vertical-rl scrolling container</title>
<p>Passes if there are two green squares</p>
<div id="scroller" style="width: 200px; height: 200px; overflow: scroll; border: 1px solid black">
  <div style="width: 580px; height: 500px; position: relative">
    <div style="position: absolute; right: 0">
      <div style="width: 80px; height: 80px; background: green"></div>
      <div style="height: 20px"></div>
      <div style="width: 80px; height: 80px; background: green"></div>
    </div>
  </div>
</div>
<script>
// Scroll all the way to the right.
scroller.scrollLeft = 800;
</script>
back to top