Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE HTML> | |
| 2 <html> | |
| 3 <head> | |
| 4 <meta http-equiv="Content-type" content="text/html; charset=utf-8"> | |
| 5 <style type="text/css" media="screen"> | |
| 6 .reflected { | |
| 7 position: relative; | |
| 8 width: 2150px; | |
| 9 height: 200px; | |
| 10 background-color: green; | |
| 11 opacity: 0.5; | |
| 12 -webkit-box-reflect: below -50px; | |
| 13 } | |
| 14 | |
| 15 * { margin: 0; padding: 0; } | |
| 16 | |
| 17 </style> | |
| 18 </head> | |
| 19 | |
| 20 <p>Opacity should be applied after reflection, so you should see a green recta ngle below. The overlap between the original and reflection should not be visibl e.</p> | |
| 21 <div class="reflected">1 | |
| 22 </div> | |
| 23 | |
| 24 </html> | |
| OLD | NEW |