transform-011.html (702B)
1 <!DOCTYPE html> 2 <link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org"> 3 <link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1442522"> 4 <div id="container" style="overflow:auto; width:100px; height:100px;"> 5 <div style="columns:5; gap:0; column-fill:auto; height:100px;"> 6 <div style="transform:rotate(180deg); height:500px;"></div> 7 </div> 8 </div> 9 <script src="/resources/testharness.js"></script> 10 <script src="/resources/testharnessreport.js"></script> 11 <script> 12 test(()=> { 13 assert_equals(container.scrollHeight, 100); 14 assert_equals(container.scrollWidth, 100); 15 }, "Rotating 180 degrees with transform origin at the center"); 16 </script>