Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <html> | |
| 3 <head> | |
| 4 <style> | |
| 5 #content { | |
| 6 font-size: 30px; | |
| 7 color: green; | |
| 8 } | |
| 9 | |
| 10 #image-shape { | |
| 11 float: left; | |
| 12 } | |
| 13 </style> | |
| 14 </head> | |
| 15 <body> | |
| 16 <p>The lines of text below should appear to the right of the blue rectangles.< /p> | |
| 17 <div id="content"> | |
| 18 <IMG id="image-shape" src="data:image/svg+xml;utf8,<svg xmlns='http://www. w3.org/2000/svg' width='100px' height='100px' fill='blue'><rect width='100' heig ht='40'/><rect y='60' width='100' height='40'/></svg>"> | |
| 19 One<br>Two<br>Free<br>Four | |
| 20 </div> | |
| 21 </body> | |
| 22 </html> | |
| OLD | NEW |