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

Side by Side Diff: chrome/test/data/gpu/mem_3dcss.html

Issue 10702200: PyAuto test for GPU memory consumption (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Updated PyAuto test for GPU memory consumption. Created 8 years, 5 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <html>
2 <head>
nduca 2012/07/17 22:40:25 Might put an explanation of what this is trying to
3 <style>
4 .myPerspective
nduca 2012/07/17 22:40:25 chrome css style is my-perspective for class names
5 {
6 width: 800px;
nduca 2012/07/17 22:40:25 alphebetize these... - comes first.
7 height: 800px;
8 border: 1px solid black;
9 text-align: center;
10 -webkit-transform-style: preserve-3d;
11 -webkit-perspective: 600px;
12 -webkit-perspective-origin: center center;
13 }
14
15 .myDiv1
16 {
17 width: 256px;
18 height: 192px;
19 border: 1px solid black;
20 background-color: red;
21 margin: 0 auto;
22 opacity: 0.8;
23 -webkit-transition-duration: 3s;
24 -webkit-transform: translateZ(-1px) rotateY(20deg);
25 -webkit-transform-style: preserve-3d;
26 }
27
28 .myDiv2
29 {
30 width: 384px;
31 height: 384px;
32 border: 1px solid black;
33 background-color: blue;
34 margin: 0 auto;
35 opacity: 0.5;
36 -webkit-transition-duration: 3s;
37 -webkit-transform: rotateY(-20deg);
38 -webkit-transform-style: preserve-3d;
39 }
40
41 .myDiv3
42 {
43 width: 256px;
44 height: 128px;
45 border: 1px solid black;
46 background-color: green;
47 margin: 0 auto;
48 opacity: 1;
49 -webkit-transition-duration: 3s;
50 -webkit-transform: translateZ(0px) rotateY(20deg);
51 -webkit-transform-style: preserve-3d;
52 }
53 </style>
54 </head>
55 <body>
56
57 <div class="myPerspective">
58 <div class="myDiv1">
59 text
60 </div>
61
62 <div class="myDiv2">
63 text
64 </div>
65
66 <div class="myDiv3">
67 text
68 </div>
69 </div>
70
71 </body>
72 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698