layout/reftests/bugs/751012-1b.html

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/layout/reftests/bugs/751012-1b.html	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,41 @@
     1.4 +<!doctype html>
     1.5 +<body style="position: relative;">
     1.6 +  <div style="-moz-column-count: 2; height: 300px">
     1.7 +    <div id="container" style="height: 600px">
     1.8 +      <!-- Make sure the abs-pos div's placeholder is not in the first continuation -->
     1.9 +      <div style="height: 400px"></div>
    1.10 +      <div style="position:absolute; top: 0; left: 0">
    1.11 +        <textarea rows="6">
    1.12 +        You should be seeing the "Should see me" text.
    1.13 +        a
    1.14 +        b
    1.15 +        c
    1.16 +        d
    1.17 +        e
    1.18 +        f
    1.19 +        g
    1.20 +        h
    1.21 +        i
    1.22 +        j
    1.23 +        k
    1.24 +        l
    1.25 +        m
    1.26 +        n
    1.27 +        o
    1.28 +        p
    1.29 +        q
    1.30 +        r
    1.31 +        s
    1.32 +        t
    1.33 +        u
    1.34 +        Should see me.
    1.35 +        </textarea>
    1.36 +      </div>
    1.37 +    </div>
    1.38 +  </div>
    1.39 +  <script>
    1.40 +    var textarea = document.querySelector("textarea");
    1.41 +    textarea.scrollTop = textarea.scrollHeight
    1.42 +    document.getElementById("container").style.overflow = "hidden";
    1.43 +  </script>
    1.44 +</body>

mercurial