blob: 220aea78b22bfc5c562e568f340f140539da87ea [file] [log] [blame]
<!DOCTYPE html>
<title>Tests an animation with no keyframes, applied to an element which is composited</title>
<style>
p {
transform: rotateX(0deg);
animation: 1s empty;
}
@keyframes empty {
}
</style>
<script src="../../resources/testharness.js"></script>
<script src="../../resources/testharnessreport.js"></script>
<script>
setup({single_test: true});
done();
</script>