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

Unified Diff: LayoutTests/animations/animation-shorthand-overriding.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/animations/animation-shorthand-overriding.html
diff --git a/LayoutTests/animations/animation-shorthand-overriding.html b/LayoutTests/animations/animation-shorthand-overriding.html
index 7b27164d579426a575498f69cdac9ddd1f7aa0c4..e254a513ed1974dcd70a91cb7f76ee57dfa9c2ae 100644
--- a/LayoutTests/animations/animation-shorthand-overriding.html
+++ b/LayoutTests/animations/animation-shorthand-overriding.html
@@ -3,12 +3,12 @@
<title>Test animation shorthand property</title>
<style type="text/css">
@-webkit-keyframes circle {
- from { -webkit-transform:rotate(0deg); }
- to { -webkit-transform:rotate(360deg); }
+ from { transform:rotate(0deg); }
+ to { transform:rotate(360deg); }
}
@-webkit-keyframes inner-circle {
- from { -webkit-transform:rotate(0deg); }
- to { -webkit-transform:rotate(-360deg); }
+ from { transform:rotate(0deg); }
+ to { transform:rotate(-360deg); }
}
div > div {

Powered by Google App Engine
This is Rietveld 408576698