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

Unified Diff: third_party/WebKit/LayoutTests/compositing/layer-creation/animation-overlap-with-children.html

Issue 2518273002: Remove unnecessary webkit prefixes from animation layout tests (Closed)
Patch Set: remove trailing space 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/compositing/layer-creation/animation-overlap-with-children.html
diff --git a/third_party/WebKit/LayoutTests/compositing/layer-creation/animation-overlap-with-children.html b/third_party/WebKit/LayoutTests/compositing/layer-creation/animation-overlap-with-children.html
index ad0315da0d8e377fe45749edc14578b9fb6e17b1..3681befb15cfca90e73cca9ee87d8d96bd412f12 100644
--- a/third_party/WebKit/LayoutTests/compositing/layer-creation/animation-overlap-with-children.html
+++ b/third_party/WebKit/LayoutTests/compositing/layer-creation/animation-overlap-with-children.html
@@ -5,7 +5,7 @@
<style>
.animating {
- -webkit-animation: slide 10s alternate linear infinite;
+ animation: slide 10s alternate linear infinite;
}
.container {
@@ -47,7 +47,7 @@
transform: translateZ(0);
}
- @-webkit-keyframes slide {
+ @keyframes slide {
from { transform: translateX(0px); }
to { transform: translateX(100px); }
}

Powered by Google App Engine
This is Rietveld 408576698