getComputedStyle-insets-multicol-absolute-crash.html (569B)
1 <!doctype html> 2 <title>Chromium bug: getComputedStyle() crashes with inset properties on abspos in multicol</title> 3 <link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1473508"> 4 <style> 5 html { 6 column-count:2; 7 } 8 body { 9 transform: scale(1); 10 } 11 div#test { 12 column-count:2; 13 position:absolute; 14 } 15 </style> 16 17 <div id="test"> 18 <svg xmlns="http://www.w3.org/2000/svg"></svg> 19 <div style="transform: scale(1)"> 20 <ruby style="position: absolute"> 21 <rt>foo</rt> 22 </ruby> 23 </div> 24 </div> 25 26 <script> 27 getComputedStyle(test).right; 28 </script>