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