position-sticky-table-td-subpixel-zoom.html (850B)
1 <!DOCTYPE html> 2 <!-- Passes if a black transparent rectangle is painted with 1px borders. --> 3 <html style="zoom: 1.5625; overflow:hidden;"> 4 <link rel="help" href="https://www.w3.org/TR/css-position-3/#sticky-pos" /> 5 <meta name="assert" content="Position sticky pixel-snaps correctly under zoom" /> 6 <link rel="match" href="position-sticky-table-td-subpixel-zoom-ref.html" /> 7 8 <style> 9 table { 10 border-spacing: 0; width:200px;} 11 tr { 12 top: 0; position: sticky; 13 } 14 td { 15 border: 1px solid black; 16 width: 100px; 17 height: 20px; 18 } 19 div::-webkit-scrollbar { 20 display: none; 21 } 22 div { 23 height:100px; 24 overflow:auto; 25 } 26 </style> 27 28 <div style=""> 29 <table> 30 <tr> 31 <td style="";></td> 32 </tr> 33 </table> 34 <div style="height: 1000px;"></div> 35 </div> 36 </html>