Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <html> | |
| 3 <style> | |
| 4 object { | |
| 5 background: red; | |
| 6 } | |
| 7 </style> | |
| 8 <body style="margin: 0px; padding: 0px;"> | |
| 9 <!--There should not be any red rectangle visible. --> | |
| 10 <object data="data:image/svg+xml, | |
| 11 <svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/ xlink' width='0' height='0'> | |
| 12 <rect width='50' height='50' fill='red'/> | |
| 13 </svg> | |
| 14 "></object> | |
| 15 <object data="data:image/svg+xml, | |
|
davve
2016/01/20 07:54:22
Missing a space?
Shanmuga Pandi
2016/01/28 11:21:57
Done.
| |
| 16 <svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/ xlink' width='50' height='0'> | |
| 17 <rect width='50' height='50' fill='red'/> | |
| 18 </svg> | |
| 19 "></object> | |
| 20 <object data="data:image/svg+xml, | |
| 21 <svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/ xlink' width='0' height='50'> | |
| 22 <rect width='50' height='50' fill='red'/> | |
| 23 </svg> | |
| 24 "></object> | |
| 25 </body> | |
| 26 </html> | |
| OLD | NEW |