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

Side by Side Diff: third_party/WebKit/LayoutTests/transitions/opacity-transition-zindex.html

Issue 2521493002: CSS Transitions: Reduce usage of -webkit prefix in layout tests (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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 2
3 <html> 3 <html>
4 <head> 4 <head>
5 <style> 5 <style>
6 .container { 6 .container {
7 position: relative; 7 position: relative;
8 height: 300px; 8 height: 300px;
9 width: 300px; 9 width: 300px;
10 margin: 10px; 10 margin: 10px;
11 background-color: green; 11 background-color: green;
12 -webkit-transition-property: opacity; 12 transition-property: opacity;
13 -webkit-transition-timing-function: linear; 13 transition-timing-function: linear;
14 -webkit-transition-duration: 5s; 14 transition-duration: 5s;
15 } 15 }
16 16
17 #first { 17 #first {
18 opacity: 0.5; 18 opacity: 0.5;
19 } 19 }
20 20
21 .box { 21 .box {
22 position: absolute; 22 position: absolute;
23 left: 10px; 23 left: 10px;
24 top: 10px; 24 top: 10px;
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 </head> 61 </head>
62 <body> 62 <body>
63 63
64 <div class="container" id="first"> 64 <div class="container" id="first">
65 <div class="box"></div> 65 <div class="box"></div>
66 <div class="indicator"></div> 66 <div class="indicator"></div>
67 </div> 67 </div>
68 68
69 </body> 69 </body>
70 </html> 70 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698