Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <html> | |
| 3 <head> | |
|
fs
2015/11/16 15:35:03
Drop <html>, <head> and <body>.
Shanmuga Pandi
2015/11/17 06:11:15
Done.
| |
| 4 <style> | |
| 5 div { | |
| 6 height:100px; | |
| 7 width:100px; | |
| 8 margin:20px auto; | |
| 9 } | |
| 10 circle { | |
| 11 stroke:#00ff00; | |
| 12 stroke-width:10; | |
| 13 fill:none; | |
| 14 } | |
| 15 </style> | |
| 16 </head> | |
| 17 <body> | |
| 18 <div> | |
| 19 <svg height="100" width="100" viewbox="0 0 100 100" style="overflow:visible; border-radius:1px;"> | |
|
fs
2015/11/16 15:35:03
I think his could be made more obvious with a larg
Shanmuga Pandi
2015/11/17 06:11:15
Done.
| |
| 20 <circle cx="50" cy="50" r="50"/> | |
| 21 </svg> | |
| 22 </div> | |
| 23 </body> | |
| 24 </html> | |
| 25 | |
| 26 | |
| OLD | NEW |