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

Unified Diff: LayoutTests/compositing/animation/computed-style-during-delay.html

Issue 637763002: Unprefix usage of -webkit-transform in tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 months 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: LayoutTests/compositing/animation/computed-style-during-delay.html
diff --git a/LayoutTests/compositing/animation/computed-style-during-delay.html b/LayoutTests/compositing/animation/computed-style-during-delay.html
index 992bbb026d2aac1cabb8816af9ce2cbfe9aad261..31530a1afb7e1426aa6e65b8a8de2bee729720c5 100644
--- a/LayoutTests/compositing/animation/computed-style-during-delay.html
+++ b/LayoutTests/compositing/animation/computed-style-during-delay.html
@@ -8,7 +8,7 @@
width: 100px;
margin: 20px;
background-color: blue;
- -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
}
#movers.moved > .box {
@@ -17,7 +17,7 @@
/* Test that we fetch the current style, not the one snapshotted when the animation started */
#movers.moved > #changedbox {
- -webkit-transform: translate3d(50px, 0, 0);
+ transform: translate3d(50px, 0, 0);
}
/* Test that fill-mode: backwards works */
@@ -26,8 +26,8 @@
}
@-webkit-keyframes move {
- from { -webkit-transform: translateX(100px); }
- to { -webkit-transform: translateX(400px); }
+ from { transform: translateX(100px); }
+ to { transform: translateX(400px); }
}
</style>
<script type="text/javascript" charset="utf-8">

Powered by Google App Engine
This is Rietveld 408576698