position-sticky-table-td-subpixel-zoom-ref.html (562B)
1 <!DOCTYPE html> 2 <!-- Passes if a black transparent rectangle is painted with 1px borders. --> 3 <html style="zoom: 1.5625; overflow:hidden;"> 4 <style> 5 table { 6 border-spacing: 0; width:200px;} 7 td { 8 border: 1px solid black; 9 width: 100px; 10 height: 20px; 11 } 12 div::-webkit-scrollbar { 13 display: none; 14 } 15 div { 16 height:100px; 17 overflow:auto; 18 } 19 </style> 20 21 <div style=""> 22 <table> 23 <tr> 24 <td style="";></td> 25 </tr> 26 </table> 27 <div style="height: 1000px;"></div> 28 </div> 29 </html>