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

Side by Side Diff: LayoutTests/fast/reflections/opacity-reflection-transform.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> 1 <!DOCTYPE>
2 <html> 2 <html>
3 <head> 3 <head>
4 <style type="text/css" media="screen"> 4 <style type="text/css" media="screen">
5 .box { 5 .box {
6 width: 100px; 6 width: 100px;
7 height: 100px; 7 height: 100px;
8 } 8 }
9 9
10 .alpha { 10 .alpha {
11 margin: 20px 100px; 11 margin: 20px 100px;
12 opacity: 0.9; 12 opacity: 0.9;
13 border: 1px solid black; 13 border: 1px solid black;
14 } 14 }
15 15
16 .reflected { 16 .reflected {
17 width: 200px; 17 width: 200px;
18 background-color: green; 18 background-color: green;
19 -webkit-transform-origin: top left; 19 -webkit-transform-origin: top left;
20 -webkit-transform: rotate(20deg); 20 transform: rotate(20deg);
21 -webkit-box-reflect: right 20px; 21 -webkit-box-reflect: right 20px;
22 } 22 }
23 23
24 </style> 24 </style>
25 </head> 25 </head>
26 26
27 <p>Test that opacity doesn't cause clipping of transformed, reflected content. You should see a rotated green box and its full reflection.</p> 27 <p>Test that opacity doesn't cause clipping of transformed, reflected content. You should see a rotated green box and its full reflection.</p>
28 <div class="alpha box"> 28 <div class="alpha box">
29 <div class="reflected box"> 29 <div class="reflected box">
30 </div> 30 </div>
31 </div> 31 </div>
32 </html> 32 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698