test_bug476308.html 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. <!DOCTYPE HTML>
  2. <html>
  3. <!--
  4. https://bugzilla.mozilla.org/show_bug.cgi?id=476308
  5. -->
  6. <head>
  7. <title>Test for Bug 345267</title>
  8. <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
  9. <script type="text/javascript" src="/tests/SimpleTest/EventUtils.js"></script>
  10. <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
  11. </head>
  12. <body>
  13. <button style="-moz-appearance: none; width: 100px; height: 60px; background-color: red; border: 2px solid green; box-shadow: 30px 0px 3.5px black; position: absolute; top: 300px; left: 20px;"
  14. id="button1">1</button>
  15. <br />
  16. <div style="width: 100px; height: 100px; background-color: green; border: 3px dotted blue; box-shadow: -30px -20px 0px black; position: absolute; top: 500px; left: 70px;"
  17. id="div1">2</div>
  18. <script type="text/javascript">
  19. var elem = document.elementFromPoint(130, 310);
  20. isnot(elem, document.getElementById("button1"), "button1's box-shadow is receiving events when it shouldn't");
  21. elem = document.elementFromPoint(50, 500);
  22. isnot(elem, document.getElementById("div1"), "div1's box-shadow is receiving events when it shouldn't");
  23. </script>
  24. </body>
  25. </html>