Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <style> | |
| 3 .block { | |
| 4 position: absolute; | |
| 5 left:100px; | |
| 6 top:0; | |
| 7 width: 100px; | |
| 8 height: 100px; | |
| 9 background-color: green; | |
| 10 } | |
| 11 .relative-inline { | |
| 12 position:relative; | |
| 13 display: inline; | |
| 14 } | |
| 15 </style> | |
| 16 <p>crbug.com/517369: There should be no red. </p> | |
| 17 <div style="position: relative;"> | |
| 18 <span class="relative-inline"> | |
| 19 <div> | |
| 20 <span class="relative-inline"> | |
| 21 <div class="block" id="inner"></div> | |
| 22 </span> | |
| 23 </div> | |
| 24 </span> | |
| 25 </div> | |
| 26 | |
| OLD | NEW |