layout/reftests/position-sticky/inner-table-1.html

Wed, 31 Dec 2014 06:55:50 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:55:50 +0100
changeset 2
7e26c7da4463
permissions
-rw-r--r--

Added tag UPSTREAM_283F7C6 for changeset ca08bd8f51b2

     1 <!DOCTYPE html>
     2 <!-- Any copyright is dedicated to the Public Domain.
     3    - http://creativecommons.org/publicdomain/zero/1.0/ -->
     4 <html>
     5   <head>
     6     <title>CSS Test: Sticky Positioning - inner table elements</title>
     7     <link rel="author" title="Corey Ford" href="mailto:corey@coreyford.name">
     8     <link rel="match" href="inner-table-1-ref.html">
     9     <meta name="assert" content="Sticky positioning on inner table elements should have no effect (until bug 35168 is fixed)">
    10     <style>
    11       .sticky {
    12         position: sticky;
    13         top: 1000px;
    14       }
    15     </style>
    16   </head>
    17   <body>
    18     <table>
    19       <thead class="sticky">
    20         <tr>
    21           <td>a</td>
    22         </tr>
    23       </thead>
    24       <tr class="sticky">
    25         <td>b</td>
    26       </tr>
    27       <tr>
    28         <td class="sticky">c</td>
    29       </tr>
    30       <tr>
    31         <td>d</td>
    32       </tr>
    33     </table>
    34   </body>
    35 </html>

mercurial