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

Side by Side Diff: third_party/WebKit/LayoutTests/animations/webkit-perspective.html

Issue 2523143002: Layout tests: remove webkit prefix from test names (Closed)
Patch Set: Created 4 years 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <style>
3 #perspective {
4 -webkit-animation: anim 1s infinite;
5 height: 150px;
6 width: 150px;
7 margin: 50px;
8 padding: 10px;
9 }
10 @-webkit-keyframes anim {
11 0% { -webkit-perspective: 150px; }
12 100% { -webkit-perspective: 150px; }
13 }
14 #transform {
15 width: 150px;
16 height: 150px;
17 background: blue;
18 transform: rotateY(45deg);
19 }
20 </style>
21 <div id="perspective">
22 <div id="transform">
23 </div>
24 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698