Blame dom/base/test/test_clearTimeoutIntervalNoArg.html

Packit f0b94e
Packit f0b94e
<meta charset=utf-8>
Packit f0b94e
<title>Test for clearTimeout/clearInterval with no arguments not throwing</title>
Packit f0b94e
<script src="/resources/testharness.js"></script>
Packit f0b94e
<script src="/resources/testharnessreport.js"></script>
Packit f0b94e
Packit f0b94e
<script>
Packit f0b94e
test(function() {
Packit f0b94e
  clearTimeout();
Packit f0b94e
}, "clearTimeout with no args should not throw ");
Packit f0b94e
test(function() {
Packit f0b94e
  clearInterval();
Packit f0b94e
}, "clearInterval with no args should not throw ");
Packit f0b94e
</script>