Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE HTML> | |
|
pdr.
2015/06/02 03:07:56
I like this test but can you add the other tests f
| |
| 2 <head> | |
| 3 <title>Test that border-image is drawn even though border width is zero</title > | |
| 4 <style> | |
| 5 body { margin: 0; } | |
| 6 div { | |
| 7 border-width: 0px; | |
| 8 border-style: solid; | |
| 9 height: 76px; | |
| 10 width: 76px; | |
| 11 background-color: red; | |
| 12 border-image-source: url('resources/border-image.png'); | |
| 13 border-image-slice: 0 fill; | |
| 14 } | |
| 15 </style> | |
| 16 </head> | |
| 17 <body> | |
| 18 <div></div> | |
| 19 </body> | |
| OLD | NEW |