Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: layout/reftests/svg/reftest.list
<!--
Any copyright is dedicated to the Public Domain.
-->
<!DOCTYPE svg [
<!-- entities etc. here -->
<!ENTITY dataURI
"data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg'><g id='empty'/><mask id='mask' maskContentUnits='userSpaceOnUse'><rect width='50' height='50' fill='white'/></mask></svg>">
]>
<title>
</title>
<style type="text/css">
.masked {
mask: url("&dataURI;#mask");
}
</style>
<!-- use an empty g to force resource document to load before onload -->
<use xlink:href="&dataURI;#empty"/>
<!-- giant lime background -->
<rect width="100%" height="100%" fill="lime"/>
<!-- Masked red rect, covered by lime rect
(to make sure mask doesn't let too much through) -->
<rect width="75" height="75" fill="red" class="masked"/>
<rect width="50" height="50" fill="lime"/>
<!-- Masked lime rect, covering red rect
(to make sure mask lets enough through) -->
<g transform="translate(0, 100)">
<rect width="50" height="50" fill="red"/>
<rect width="75" height="75" fill="lime" class="masked"/>
</g>
</svg>