2009-07-28 17:26:39 -07:00
|
|
|
<!--
|
|
|
|
Any copyright is dedicated to the Public Domain.
|
2011-06-21 05:19:35 -07:00
|
|
|
http://creativecommons.org/publicdomain/zero/1.0/
|
2009-07-28 17:26:39 -07:00
|
|
|
-->
|
|
|
|
<svg xmlns="http://www.w3.org/2000/svg" class="reftest-wait"
|
|
|
|
onload="startTest()">
|
|
|
|
|
|
|
|
<script>
|
|
|
|
<![CDATA[
|
|
|
|
|
|
|
|
function startTest() {
|
|
|
|
document.addEventListener("MozReftestInvalidate", boom, false);
|
2013-05-15 17:53:03 -07:00
|
|
|
setTimeout(doTest, 4000); // fallback for running outside reftest
|
2009-07-28 17:26:39 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
function boom() {
|
|
|
|
n = document.getElementById("m1");
|
|
|
|
n.style.overflow = "visible";
|
|
|
|
document.documentElement.removeAttribute("class");
|
|
|
|
}
|
|
|
|
|
|
|
|
]]>
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<defs>
|
|
|
|
<marker id="m1" orient="auto" markerUnits="strokeWidth">
|
|
|
|
<rect width="100%" height="100%" fill="blue"/>
|
|
|
|
</marker>
|
|
|
|
</defs>
|
|
|
|
|
|
|
|
|
|
|
|
<rect width="100%" height="100%" fill="yellow"/>
|
|
|
|
|
|
|
|
<line x1="30" x2="30" y1="10" y2="10" stroke="red" stroke-width="3" marker-end="url(#m1)"/>
|
|
|
|
|
|
|
|
</svg>
|