Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / animations / webkit-perspective.html
blobd36c7ebe7c844c8d94852a1e3b193f1ade8beeb8
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;
10 @-webkit-keyframes anim {
11 0% { -webkit-perspective: 150px; }
12 100% { -webkit-perspective: 150px; }
14 #transform {
15 width: 150px;
16 height: 150px;
17 background: blue;
18 transform: rotateY(45deg);
20 </style>
21 <div id="perspective">
22 <div id="transform">
23 </div>
24 </div>