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

Unified Diff: third_party/WebKit/LayoutTests/animations/keyframes-invalid-keys.html

Issue 2522123002: CSS Animations: Remove unnecessary webkit prefixes from 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/animations/keyframes-invalid-keys.html
diff --git a/third_party/WebKit/LayoutTests/animations/keyframes-invalid-keys.html b/third_party/WebKit/LayoutTests/animations/keyframes-invalid-keys.html
index 8d513b04affe0905450324bf809f6da6f8acddb9..b443428d34e0607bcc37a2158c246aa6885d2a63 100644
--- a/third_party/WebKit/LayoutTests/animations/keyframes-invalid-keys.html
+++ b/third_party/WebKit/LayoutTests/animations/keyframes-invalid-keys.html
@@ -6,7 +6,7 @@
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Keyframes with invalid keys</title>
<style type="text/css" media="screen">
- @-webkit-keyframes anim {
+ @keyframes anim {
50% { left: 3px; }
/* Out-of-range percentage values */
@@ -28,9 +28,9 @@
height: 100px;
width: 100px;
background-color: blue;
- -webkit-animation-duration: 1s;
- -webkit-animation-timing-function: linear;
- -webkit-animation-name: anim;
+ animation-duration: 1s;
+ animation-timing-function: linear;
+ animation-name: anim;
}
</style>

Powered by Google App Engine
This is Rietveld 408576698