blob: 727c244c6c94f78b730c744310386873c5f2a6ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!-- Test a backwards seek with an event-generated time -->
<svg xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
id="svg"
class="reftest-wait">
<script xlink:href="event-util.js" type="text/javascript"/>
<script type="text/javascript">
function seek()
{
document.documentElement.setCurrentTime(40);
finish(30);
}
document.addEventListener("MozReftestInvalidate", seek, false);
setTimeout(seek, 4000); // fallback for running outside reftest
</script>
<rect width="100" height="100" fill="red">
<set attributeName="fill" attributeType="CSS" to="green"
begin="svg.SVGLoad+20s"/>
</rect>
</svg>
|