position-absolute-large-negative-inset.html (676B)
1 <!DOCTYPE html> 2 <html> 3 <title>CSS Position: Large negative box inset properties</title> 4 <link rel="help" href="https://drafts.csswg.org/css-position-3/#insets"> 5 <link rel="match" href="position-absolute-large-negative-inset-ref.html"> 6 <meta name="assert" content="This test verifies a box with very large negative insets within an element with will-change: transform does not affect the rendering of the element."/> 7 8 <style> 9 html { 10 will-change: transform; 11 } 12 13 span { 14 position: absolute; 15 left: -99999999999px; 16 } 17 18 div { 19 background:green; 20 width:50px; 21 height:50px; 22 } 23 </style> 24 <div></div> 25 <span>negative inset text</span> 26 </html>