Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!doctype html> | |
| 2 <html> | |
| 3 <head> | |
| 4 <style> | |
| 5 div { | |
| 6 background-color: green; | |
| 7 width: 100px; | |
| 8 height: 100px; | |
| 9 /* If border style is not set (default is None), border-image | |
| 10 should be ignored. | |
| 11 border-style: solid; | |
| 12 */ | |
| 13 border-image: url(resources/red.png) 30 round; | |
| 14 border-width: 100px; | |
| 15 } | |
| 16 </style> | |
| 17 </head> | |
| 18 <body> | |
| 19 <div></div> | |
| 20 </body> | |
| 21 </html> | |
| OLD | NEW |