| <!DOCTYPE html> |
| <html> |
| <head> |
| <style> |
| .parent { |
| position: relative; |
| background-color: black; |
| width: 100px; |
| height: 100px; |
| margin: 100px; |
| opacity: 0.5; |
| -webkit-filter: drop-shadow(50px 50px 10px #0f0); |
| } |
| .child { |
| position: absolute; |
| top: 113px; |
| left: 113px; |
| width: 50px; |
| height: 50px; |
| background-color: red; |
| } |
| </style> |
| <script> |
| if (window.testRunner) |
| testRunner.dumpAsText(); |
| </script> |
| </head> |
| <body> |
| <p>This test should not assert or crash.</p> |
| <div class="parent"> |
| <div class="child"></div> |
| </div> |
| <div class="parent"> |
| <div class="child"></div> |
| </div> |
| </body> |