2009-05-09 08:29:24 -07:00
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
|
|
<head>
|
|
|
|
<title>Test for setCurrentTime Behavior </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"
|
|
|
|
onload="this.pauseAnimations()" />
|
2009-05-09 08:29:24 -07:00
|
|
|
</div>
|
|
|
|
<pre id="test">
|
|
|
|
<script class="testbody" type="text/javascript">
|
|
|
|
<![CDATA[
|
|
|
|
/** Test for basic setCurrentTime / getCurrentTime Behavior **/
|
|
|
|
|
|
|
|
/* Global Variables & Constants */
|
|
|
|
const PRECISION_LEVEL = 0.0000001; // Allow small level of floating-point error
|
|
|
|
const gTimes = [0, 1.5, 0.2, 0.99, -400.5, 10000000, -1];
|
|
|
|
const gWaitTime = 20;
|
|
|
|
var gSvg = document.getElementById("svg");
|
|
|
|
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
|
|
|
|
function main() {
|
2010-03-10 12:33:37 -08:00
|
|
|
ok(gSvg.animationsPaused(), "should be paused by <svg> load handler");
|
|
|
|
is(gSvg.getCurrentTime(), 0, "should be paused at 0 in <svg> load handler");
|
2009-05-09 08:29:24 -07:00
|
|
|
|
|
|
|
// Test that seeking takes effect immediately
|
|
|
|
for (var i = 0; i < gTimes.length; i++) {
|
|
|
|
gSvg.setCurrentTime(gTimes[i]);
|
2010-07-02 22:52:51 -07:00
|
|
|
// We adopt the SVGT1.2 behavior of clamping negative times to 0
|
|
|
|
assertFloatsEqual(gSvg.getCurrentTime(), Math.max(gTimes[i], 0.0));
|
2009-05-09 08:29:24 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Test that seeking isn't messed up by timeouts
|
|
|
|
// (using tail recursion to set up the chain of timeout function calls)
|
|
|
|
var func = function() {
|
|
|
|
checkTimesAfterIndex(0);
|
|
|
|
}
|
|
|
|
setTimeout(func, gWaitTime);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* This method seeks to the time at gTimes[index],
|
|
|
|
* and then sets up a timeout to...
|
|
|
|
* - verify that the seek worked
|
|
|
|
* - make a recursive call for the next index.
|
|
|
|
*/
|
|
|
|
function checkTimesAfterIndex(index) {
|
|
|
|
if (index == gTimes.length) {
|
|
|
|
// base case -- we're done!
|
|
|
|
SimpleTest.finish();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
gSvg.setCurrentTime(gTimes[index]);
|
|
|
|
var func = function() {
|
2010-07-02 22:52:51 -07:00
|
|
|
assertFloatsEqual(gSvg.getCurrentTime(), Math.max(gTimes[index], 0.0));
|
2009-05-09 08:29:24 -07:00
|
|
|
checkTimesAfterIndex(index + 1);
|
|
|
|
}
|
|
|
|
setTimeout(func, gWaitTime);
|
|
|
|
}
|
|
|
|
|
|
|
|
function assertFloatsEqual(aVal, aExpected) {
|
|
|
|
ok(Math.abs(aVal - aExpected) <= PRECISION_LEVEL,
|
|
|
|
"getCurrentTime returned " + aVal + " after seeking to " + aExpected)
|
|
|
|
}
|
|
|
|
|
|
|
|
window.addEventListener("load", main, false);
|
|
|
|
]]>
|
|
|
|
</script>
|
|
|
|
</pre>
|
|
|
|
</body>
|
|
|
|
</html>
|