Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!doctype html> | |
| 2 <html> | |
| 3 <head> | |
| 4 <title>Test that border-image-width is truncated in the same way | |
| 5 as border-width</title> | |
| 6 <style> | |
| 7 .test { | |
| 8 border-style: solid; | |
| 9 border-width: 1.9px; | |
| 10 border-color: green; | |
| 11 width: 100px; | |
| 12 height: 100px; | |
| 13 } | |
| 14 </style> | |
| 15 </head> | |
| 16 <body> | |
| 17 <div class="test"></div> | |
| 18 </body> | |
| 19 </html> | |
| OLD | NEW |