blob: 6f4eb970bbc5aaa9848cc42b7cea05faf6ed72d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<svg xmlns="http://www.w3.org/2000/svg" class="reftest-wait">
<marker id="marker"><path d="M100,0 l100,100 200,200" filter="url(#filter)"/></marker>
<filter id="filter"/>
<path d="M100,0 l100,100 200,200" marker-mid="url(#marker)"/>
<script>
window.addEventListener("load", function() {
setTimeout(function() {
document.getElementById("filter").style.fontWeight = "bold";
document.documentElement.removeAttribute("class");
}, 200);
}, false);
</script>
</svg>
|