Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <style> | |
| 3 body { margin: 0 } | |
| 4 .ref { | |
| 5 width: 80px; | |
| 6 height: 80px; | |
| 7 background-color: green | |
| 8 } | |
| 9 .spacer { | |
| 10 height: 80px | |
| 11 } | |
| 12 svg { | |
| 13 display: block | |
| 14 } | |
| 15 </style> | |
| 16 <svg xmlns="http://www.w3.org/2000/svg" width="160" viewBox="0 0 2 2"> | |
| 17 <polygon points="0,1 1,0 2,1 1,2" fill="green"/> | |
| 18 </svg> | |
| 19 <div class="ref"></div> | |
| 20 <div class="spacer"></div> | |
| 21 <div class="ref"></div> | |
| OLD | NEW |