2010-01-12 12:00:49 -08:00
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
|
|
<head>
|
|
|
|
<title>Tests updated intervals</title>
|
|
|
|
<script type="text/javascript" src="/MochiKit/packed.js"></script>
|
|
|
|
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
|
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<p id="display"></p>
|
|
|
|
<div id="content" style="display: none">
|
2010-03-10 12:33:37 -08:00
|
|
|
<svg id="svg" xmlns="http://www.w3.org/2000/svg" width="120px" height="120px"
|
|
|
|
onload="this.pauseAnimations()">
|
2010-01-12 12:00:49 -08:00
|
|
|
<circle cx="20" cy="20" r="15" fill="blue" id="circle">
|
|
|
|
<animate attributeName="cx" from="0" to="100" begin="2s" dur="4s"
|
|
|
|
id="anim1" attributeType="XML"/>
|
|
|
|
</circle>
|
|
|
|
</svg>
|
|
|
|
</div>
|
|
|
|
<pre id="test">
|
|
|
|
<script class="testbody" type="text/javascript">
|
|
|
|
<![CDATA[
|
|
|
|
/** Tests for updated intervals **/
|
|
|
|
|
|
|
|
/* Global Variables */
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
|
|
|
|
function main() {
|
2010-03-10 12:33:37 -08:00
|
|
|
var svg = document.getElementById("svg");
|
|
|
|
ok(svg.animationsPaused(), "should be paused by <svg> load handler");
|
|
|
|
is(svg.getCurrentTime(), 0, "should be paused at 0 in <svg> load handler");
|
2010-01-12 12:00:49 -08:00
|
|
|
|
2010-03-10 12:33:37 -08:00
|
|
|
var anim = document.getElementById("anim1");
|
2010-01-12 12:00:49 -08:00
|
|
|
|
|
|
|
// Check regular operation
|
|
|
|
svg.setCurrentTime(3);
|
|
|
|
is(anim.getStartTime(), 2, "Unexpected initial start time");
|
|
|
|
|
|
|
|
// Add an instance time before the current interval at t=1s
|
|
|
|
anim.beginElementAt(-2);
|
|
|
|
|
|
|
|
// We shouldn't change the begin time
|
|
|
|
is(anim.getStartTime(), 2, "Start time shouldn't have changed");
|
|
|
|
|
|
|
|
// Or the end--that is, if we go to t=5.5 we should still be running
|
|
|
|
svg.setCurrentTime(5.5);
|
|
|
|
try {
|
2010-01-12 12:00:50 -08:00
|
|
|
is(anim.getSimpleDuration(), 4, "Simple duration shouldn't have changed");
|
2010-01-12 12:00:49 -08:00
|
|
|
is(anim.getStartTime(), 2, "Start time shouldn't have changed after seek");
|
|
|
|
} catch (e) {
|
|
|
|
if (e.code != DOMException.INVALID_STATE_ERR)
|
|
|
|
throw e;
|
2010-01-12 12:00:50 -08:00
|
|
|
ok(false, "Animation ended too early, even though begin time and " +
|
|
|
|
"simple duration didn't change");
|
2010-01-12 12:00:49 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
SimpleTest.finish();
|
|
|
|
}
|
|
|
|
|
|
|
|
window.addEventListener("load", main, false);
|
|
|
|
]]>
|
|
|
|
</script>
|
|
|
|
</pre>
|
|
|
|
</body>
|
|
|
|
</html>
|