Revision b483a6d88ef0e0f0ccdf042f5c9b07233b59ca74 authored by Felipe Gomes on 10 January 2012, 16:31:03 UTC, committed by Felipe Gomes on 10 January 2012, 16:31:03 UTC
1 parent 1546d86
Raw File
seek7.js
function test_seek7(v, seekTime, is, ok, finish) {

// If a NaN is passed to currentTime, make sure this is caught
// otherwise an infinite loop in the Ogg backend occurs.
var completed = false;
var thrown1 = false;
var thrown2 = false;
var thrown3 = false;

function startTest() {
  if (completed)
    return false;

  try {
    v.currentTime = NaN;
  } catch(e) {
    thrown1 = true;
  }

  try {
    v.currentTime = Math.random;
  } catch(e) {
    thrown3 = true;
  }

  completed = true;
  ok(thrown1, "Setting currentTime to invalid value of NaN");
  ok(thrown3, "Setting currentTime to invalid value of a function");
  finish();
  return false;
}

v.addEventListener("loadedmetadata", startTest, false);

}
back to top