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

Side by Side Diff: LayoutTests/transforms/3d/general/perspective-units.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 unified diff | Download patch
OLDNEW
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
2 "http://www.w3.org/TR/html4/loose.dtd"> 2 "http://www.w3.org/TR/html4/loose.dtd">
3 3
4 <html lang="en"> 4 <html lang="en">
5 <head> 5 <head>
6 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 6 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
7 <title>Perpsective Units</title> 7 <title>Perpsective Units</title>
8 <style type="text/css" media="screen"> 8 <style type="text/css" media="screen">
9 .container { 9 .container {
10 display: inline-block; 10 display: inline-block;
11 height: 150px; 11 height: 150px;
12 width: 200px; 12 width: 200px;
13 margin: 10px 20px; 13 margin: 10px 20px;
14 border: 1px solid black; 14 border: 1px solid black;
15 -webkit-perspective-origin: left top; 15 -webkit-perspective-origin: left top;
16 } 16 }
17 17
18 .content { 18 .content {
19 height: 100%; 19 height: 100%;
20 width: 100%; 20 width: 100%;
21 background-color: blue; 21 background-color: blue;
22 -webkit-transform: rotateX(45deg); 22 transform: rotateX(45deg);
23 } 23 }
24 </style> 24 </style>
25 </head> 25 </head>
26 <body> 26 <body>
27 27
28 <p>-webkit-perspective should take units. All four should look qualitatively s imilar.</p> 28 <p>-webkit-perspective should take units. All four should look qualitatively s imilar.</p>
29 <div class="container" style="-webkit-perspective: 400"> 29 <div class="container" style="-webkit-perspective: 400">
30 <div class="content"> 30 <div class="content">
31 </div> 31 </div>
32 </div> 32 </div>
(...skipping 10 matching lines...) Expand all
43 43
44 <br> 44 <br>
45 45
46 <div class="container" style="zoom: 2; -webkit-perspective: 400px"> 46 <div class="container" style="zoom: 2; -webkit-perspective: 400px">
47 <div class="content"> 47 <div class="content">
48 </div> 48 </div>
49 </div> 49 </div>
50 50
51 </body> 51 </body>
52 </html> 52 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698