Chromium Code Reviews| Index: third_party/WebKit/Source/core/paint/test_data/opacity-animation.html |
| diff --git a/third_party/WebKit/Source/core/paint/test_data/opacity-animation.html b/third_party/WebKit/Source/core/paint/test_data/opacity-animation.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..0cfdd94757f09c04b27dcef70c8094e77fc22868 |
| --- /dev/null |
| +++ b/third_party/WebKit/Source/core/paint/test_data/opacity-animation.html |
| @@ -0,0 +1,17 @@ |
| +<!DOCTYPE html> |
| +<style> |
| +div { |
| + width: 100px; |
| + height: 100px; |
| + background-color: red; |
| +} |
| +.animate { |
| + animation-name: test; |
| + animation-duration: 4s; |
| +} |
| +@keyframes test { |
| + from { opacity: 0.0;} |
| + to { opacity: 1.0;} |
| +} |
| +</style> |
| +<div id="target" class="animate"></div>; |