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

Unified Diff: third_party/WebKit/LayoutTests/animations/perspective.html

Issue 2523143002: Layout tests: remove webkit prefix from test names (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/perspective-expected.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/animations/perspective.html
diff --git a/third_party/WebKit/LayoutTests/animations/webkit-perspective.html b/third_party/WebKit/LayoutTests/animations/perspective.html
similarity index 66%
rename from third_party/WebKit/LayoutTests/animations/webkit-perspective.html
rename to third_party/WebKit/LayoutTests/animations/perspective.html
index d36c7ebe7c844c8d94852a1e3b193f1ade8beeb8..acc73b2805c324e3285ae646663b1486f48109a5 100644
--- a/third_party/WebKit/LayoutTests/animations/webkit-perspective.html
+++ b/third_party/WebKit/LayoutTests/animations/perspective.html
@@ -1,15 +1,15 @@
<!DOCTYPE html>
<style>
#perspective {
- -webkit-animation: anim 1s infinite;
+ animation: anim 1s infinite;
height: 150px;
width: 150px;
margin: 50px;
padding: 10px;
}
-@-webkit-keyframes anim {
- 0% { -webkit-perspective: 150px; }
- 100% { -webkit-perspective: 150px; }
+@keyframes anim {
+ 0% { perspective: 150px; }
+ 100% { perspective: 150px; }
}
#transform {
width: 150px;
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/animations/perspective-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698