Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

SVG Preview (Scaled)

Preview of https://hg.mozilla.org/mozilla-central/raw-file/tip/layout/reftests/svg/path-04.svg
<!--
Any copyright is dedicated to the Public Domain.
-->
<svg xmlns="http://www.w3.org/2000/svg" class="reftest-wait">
<title>Test that selectors detect changes to the 'd' attribute</title>
<style>
path[d="M0,0 V100 H100 V0 Z"] {
fill: lime;
}
</style>
<script><![CDATA[
function run()
{
document.getElementById('path').setAttribute('d', 'M0,0 V100 H100 V0 Z');
document.documentElement.removeAttribute('class');
}
window.addEventListener('MozReftestInvalidate', run, false);
]]></script>
<rect width="100%" height="100%" fill="lime"/>
<path id="path" fill="red" d="M0,0 H100 V100 H0 Z"/>
</svg>