Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <svg fill="blue" width="400px" height="400px" xmlns="http://www.w3.org/2000/svg" > | |
| 2 <!-- | |
| 3 This file defines a shape that's a small symmetrical stack of 3 rectilinear polygons. | |
| 4 The shape looks like the following text, where each X represents a 50x50 blo ck of blue pixels: | |
| 5 | |
| 6 XXXXX | |
| 7 | |
| 8 XXX | |
| 9 X | |
| 10 XXX | |
| 11 | |
| 12 XXXXX | |
| 13 --> | |
| 14 <rect x="0" y="0" width="250" height="50"/> | |
| 15 <rect x="50" y="100" width="150" height="50"/> | |
| 16 <rect x="100" y="150" width="50" height="50"/> | |
| 17 <rect x="50" y="200" width="150" height="50"/> | |
| 18 <rect x="0" y="300" width="250" height="50"/> | |
| 19 </svg> | |
| OLD | NEW |