chrome-bug-425405650.html (347B)
1 <!DOCTYPE html> 2 <style> 3 #el0 { 4 display: block; 5 } 6 7 #el1 { 8 position: absolute; 9 } 10 11 .c7 { 12 position: absolute; 13 } 14 </style> 15 <svg id="el0"></svg> 16 17 <svg id="el1"> 18 <use href="#el0"></use> 19 </svg> 20 21 <script> 22 document.body.offsetTop; 23 document.getElementById('el0').setAttribute('class', 'c7'); 24 document.body.offsetTop; 25 </script>