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

Unified Diff: third_party/WebKit/LayoutTests/fast/css-generated-content/pseudo-animation-before-onload.html

Issue 2513413007: CSS Animations: Reduce usage of webkit prefix in layout tests (Closed)
Patch Set: Created 4 years, 1 month 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/fast/css-generated-content/pseudo-animation-before-onload.html
diff --git a/third_party/WebKit/LayoutTests/fast/css-generated-content/pseudo-animation-before-onload.html b/third_party/WebKit/LayoutTests/fast/css-generated-content/pseudo-animation-before-onload.html
index 687bdb64cbb87e0889d3a13cf91cff62263e151c..eb58450b6bd9d66484a34705aa5b2fefacf2e760 100644
--- a/third_party/WebKit/LayoutTests/fast/css-generated-content/pseudo-animation-before-onload.html
+++ b/third_party/WebKit/LayoutTests/fast/css-generated-content/pseudo-animation-before-onload.html
@@ -3,7 +3,7 @@
<script src="../../resources/js-test.js"></script>
<style>
-@-webkit-keyframes example {
+@keyframes example {
from { width: 50px; height: 50px; }
to { width: 10px; height: 10px; }
}
@@ -21,7 +21,7 @@
background: green;
width: 10px;
height: 10px;
- -webkit-animation: example 2s;
+ animation: example 2s;
-moz-animation: example 2s;
animation: example 2s;
}

Powered by Google App Engine
This is Rietveld 408576698