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

Unified Diff: third_party/WebKit/LayoutTests/animations/fill-mode-forwards2.html

Issue 2970883003: Separate out animations tests with prefixing (Closed)
Patch Set: Rebaseline virtual/threaded version of test too Created 3 years, 5 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/fill-mode-forwards2.html
diff --git a/third_party/WebKit/LayoutTests/animations/fill-mode-forwards2.html b/third_party/WebKit/LayoutTests/animations/fill-mode-forwards2.html
index 04dde40ac84e538877cf74b3b7e398788ac75af0..804459b4a7d011b25fddd35fb468ef609bef2a6d 100644
--- a/third_party/WebKit/LayoutTests/animations/fill-mode-forwards2.html
+++ b/third_party/WebKit/LayoutTests/animations/fill-mode-forwards2.html
@@ -33,11 +33,11 @@
top: 100px;
background-color: blue;
opacity: 0;
- -webkit-animation-name: pop;
- -webkit-animation-duration: 1s;
- -webkit-animation-fill-mode: forwards;
+ animation-name: pop;
+ animation-duration: 1s;
+ animation-fill-mode: forwards;
}
- @-webkit-keyframes pop {
+ @keyframes pop {
0% { transform: scale(0.05); opacity: 0; }
33% { transform: scale(1.00); opacity: 1; }
66% { transform: scale(1.66); opacity: 1; }

Powered by Google App Engine
This is Rietveld 408576698