trisquel-icecat/icecat/layout/reftests/svg/dynamic-link-style-01.svg
2025-10-06 02:35:48 -06:00

26 lines
768 B
XML

<svg xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
class="reftest-wait">
<title>Testcase for dynamic changes to link styles</title>
<!-- From https://bugzilla.mozilla.org/show_bug.cgi?id=398105 -->
<script>
document.addEventListener("MozReftestInvalidate", doTest, false);
setTimeout(doTest, 4000); // fallback for running outside reftest
function doTest() {
document.getElementById('r').removeAttribute('xlink:href');
document.documentElement.removeAttribute('class');
}
</script>
<style type="text/css">
a:link rect { fill: red; }
</style>
<a xlink:href="do-not-visit-me.xxx" id="r">
<rect width="100%" height="100%" fill="lime" />
</a>
</svg>