Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(75)

Unified Diff: third_party/WebKit/LayoutTests/animations/animation-duration-infinite.html

Issue 1888983003: Fix crash in keyframe-effect/getComputedTiming tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Convert test to ref test Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/animations/animation-duration-infinite.html
diff --git a/third_party/WebKit/LayoutTests/animations/animation-duration-infinite.html b/third_party/WebKit/LayoutTests/animations/animation-duration-infinite.html
new file mode 100644
index 0000000000000000000000000000000000000000..3daebfd2871164dd8dd77d2df5109b6f3370be5a
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/animations/animation-duration-infinite.html
@@ -0,0 +1,15 @@
+<!DOCTYPE html>
+<div id='target'></div>
+<style type="text/css">
+ #target {
+ background-color: black;
+ width: 100px;
+ height: 100px;
+ }
+</style>
+<script>
+ var element = document.getElementById('target');
+ var animation = element.animate(
+ {opacity: ['0', '1']},
+ {duration: Infinity, iterationStart: 4.75});
+</script>

Powered by Google App Engine
This is Rietveld 408576698