Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <html> | |
| 3 <body style="margin: 0px; padding: 0px;"> | |
| 4 <!--There should not be any red rectangle visible. --> | |
| 5 <svg width='0' height='0'> | |
| 6 <rect width='50' height='50' fill='red'/> | |
| 7 </svg> | |
| 8 | |
| 9 <svg width='50' height='0'> | |
| 10 <rect width='50' height='50' fill='red'/> | |
| 11 </svg> | |
| 12 | |
| 13 <svg width='0' height='50'> | |
| 14 <rect width='50' height='50' fill='red'/> | |
| 15 </svg> | |
| 16 </body> | |
| 17 </html> | |
| OLD | NEW |