blob: bf8f9b9f59754b08ba50ecc1de5dd69e6bc8e1b5 [file] [log] [blame]
<!DOCTYPE html>
<title>This tests an animation with zero duration and infinite iterations. See http:://crbug.com/322575</title>
<style>
p {
animation: test infinite;
}
@keyframes test {
0% {
}
}
</style>
<script src="../../resources/testharness.js"></script>
<script src="../../resources/testharnessreport.js"></script>
<script>
setup({single_test: true});
done();
</script>