blob: 8af8d6aaab859fa535535c87f412b292649646c5 [file] [log] [blame]
<!DOCTYPE html>
<title>This tests an animation with zero duration and a very large start delay. See http:://crbug.com/324323</title>
<style>
p {
animation-name: test;
animation-fill-mode: backwards;
/* Approx 2^54 */
animation-delay: 18000000000000000s;
}
@keyframes test {
0% {
}
}
</style>
<script src="../../resources/testharness.js"></script>
<script src="../../resources/testharnessreport.js"></script>
<script>
setup({single_test: true});
done();
</script>