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/dynamic-class-01.svg
<!--
Any copyright is dedicated to the Public Domain.
-->
<svg class="reftest-wait" xmlns="http://www.w3.org/2000/svg">
<title>Test invalidation on setting .className.baseVal</title>
<style type="text/css">
.lime { fill: lime; }
</style>
<script>
document.addEventListener("MozReftestInvalidate", doTest, false);
setTimeout(doTest, 4000); // fallback for running outside reftest
function doTest() {
document.getElementById('rect').className.baseVal = 'lime';
document.documentElement.removeAttribute('class');
}
</script>
<rect id="rect" width="100%" height="100%" fill="red"/>
</svg>