Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: tsan OR (os == 'android')
- Manifest: layout/reftests/svg/reftest.list
<!doctype html>
<style>
#shadow {
fill: red;
}
</style>
<div id="host"></div>
<script>
host.attachShadow({ mode: "open" }).innerHTML = `
<style>
#shadow {
fill: lime;
}
</style>
<svg width="100" height="100">
<defs>
<g id="shadow" width="100" height="100">
<rect width="100" height="100" />
</g>
</defs>
<use href="#shadow" />
</svg>
`;
</script>