hit-test-border-radius-and-perspective.html (646B)
1 <!DOCTYPE html> 2 <link rel="help" href="https://crbug.com/456164629"> 3 <script src="/resources/testharness.js"></script> 4 <script src="/resources/testharnessreport.js"></script> 5 <div id=padding style="padding-top: 100px;"> 6 <div id=perspective style="perspective: 1px;"> 7 <div id=overflow style="border-radius: 5px; overflow: hidden;"> 8 <div id=target style="position: relative; background: green; width: 100px; height: 100px;"></div> 9 </div> 10 </div> 11 </div> 12 13 <script> 14 test(()=> { 15 assert_equals(document.elementFromPoint(50, 150), target); 16 }, "Hit testing should work on elements under perspective and border radius"); 17 </script>