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

Unified Diff: third_party/WebKit/LayoutTests/animations/keyframe-timing-functions-multiple-animations.html

Issue 2521163002: 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/animations/keyframe-timing-functions-multiple-properties.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/animations/keyframe-timing-functions-multiple-animations.html
diff --git a/third_party/WebKit/LayoutTests/animations/keyframe-timing-functions-multiple-animations.html b/third_party/WebKit/LayoutTests/animations/keyframe-timing-functions-multiple-animations.html
index a2d368e1ed2a031bf83cb92f7e9b370d8e636711..1d3f82cb734ae0f9229fe7db576a08433501c14b 100644
--- a/third_party/WebKit/LayoutTests/animations/keyframe-timing-functions-multiple-animations.html
+++ b/third_party/WebKit/LayoutTests/animations/keyframe-timing-functions-multiple-animations.html
@@ -3,27 +3,27 @@
<head>
<style type="text/css" media="screen">
div#target {
- -webkit-animation-name: animation1, animation2;
- -webkit-animation-duration: 2s;
- -webkit-animation-timing-function: steps(2);
+ animation-name: animation1, animation2;
+ animation-duration: 2s;
+ animation-timing-function: steps(2);
background-color: red;
position: relative;
width: 100px;
height: 100px;
}
- @-webkit-keyframes animation1 {
+ @keyframes animation1 {
from {
left: 0px;
- -webkit-animation-timing-function: linear;
+ animation-timing-function: linear;
}
to {
left: 200px;
}
}
- @-webkit-keyframes animation2 {
+ @keyframes animation2 {
from {
top: 0px;
- -webkit-animation-timing-function: linear;
+ animation-timing-function: linear;
}
to {
top: 200px;
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/animations/keyframe-timing-functions-multiple-properties.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698