blob: 0c9458b4786a0af6a388b3b6516f456958eb4909 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!-- {lower,upper}-{roman,alpha} in svg -->
<svg xmlns="http://www.w3.org/2000/svg">
<script>
<![CDATA[
function boom()
{
document.documentElement.style.transition = "2s";
document.documentElement.style.listStyleType = "lower-roman";
}
window.addEventListener("load", boom, false);
]]>
</script></svg>
|