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> | |
|
Julien - ping for review
2013/11/25 07:29:09
My usual comment about <title>, if it's important
| |
| 6 <style> | |
| 7 .test { | |
| 8 border-style: solid; | |
| 9 border-width: 1px; | |
| 10 border-image-width: 1.9; | |
| 11 border-image-source: linear-gradient(to bottom, green, green); | |
| 12 border-image-slice: 10; | |
| 13 width: 100px; | |
| 14 height: 100px; | |
| 15 } | |
| 16 </style> | |
| 17 </head> | |
|
Julien - ping for review
2013/11/25 07:29:09
Let's include a description (the <title> content w
| |
| 18 <body> | |
| 19 <div class="test"></div> | |
| 20 </body> | |
| 21 </html> | |
| OLD | NEW |