| <!DOCTYPE html> |
| <html> |
| <head> |
| <style> |
| p { |
| margin: 0px; |
| } |
| #maskedElement { |
| width: 300px; |
| height: 400px; |
| background-color: red; |
| -webkit-mask-image:url('#invalidId'); |
| position: absolute; |
| left: 10px; |
| top: 50px; |
| } |
| #elementToNotBeCovered { |
| width: 300px; |
| height: 400px; |
| background-color: #2222FF; |
| position: absolute; |
| left: 10px; |
| top: 50px; |
| } |
| </style> |
| </head> |
| |
| <body> |
| <p><a href="https://bugs.webkit.org/show_bug.cgi?id=129682">Bug 129682</a> - On success, you should see a blue rectangle and no red.</p> |
| <p>This test references an invalid fragment identifier.</p> |
| <div id="elementToNotBeCovered"></div> |
| <div id="maskedElement"></div> |
| </body> |
| </html> |