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

Unified Diff: third_party/WebKit/LayoutTests/compositing/animation/animated-composited-inside-hidden.html

Issue 2518943002: CSS Transitions: 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/compositing/geometry/limit-layer-bounds-opacity-transition.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/compositing/animation/animated-composited-inside-hidden.html
diff --git a/third_party/WebKit/LayoutTests/compositing/animation/animated-composited-inside-hidden.html b/third_party/WebKit/LayoutTests/compositing/animation/animated-composited-inside-hidden.html
index 9ee64f085cada70552e1cf6c535496c53fa6c69c..427f77b20217e9b54221a6299046745b31db363e 100644
--- a/third_party/WebKit/LayoutTests/compositing/animation/animated-composited-inside-hidden.html
+++ b/third_party/WebKit/LayoutTests/compositing/animation/animated-composited-inside-hidden.html
@@ -17,10 +17,10 @@
.inner {
width: 80px;
height: 80px;
- -webkit-animation: spin 5s linear infinite;
+ animation: spin 5s linear infinite;
}
- @-webkit-keyframes spin {
+ @keyframes spin {
0% { transform: rotate(0); }
100% { transform: rotate(360deg); }
}
@@ -29,7 +29,7 @@
position: relative;
left: 0;
background-color: blue;
- -webkit-transition: left 1s linear;
+ transition: left 1s linear;
}
#container.animating #transition-tester {
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/compositing/geometry/limit-layer-bounds-opacity-transition.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698