Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <html> | |
| 3 <head> | |
| 4 <style> | |
| 5 div { | |
| 6 background-color: lightgrey; | |
| 7 border: 30px solid transparent; | |
| 8 border-image: url('resources/ring.png'); | |
| 9 } | |
| 10 #div1 { | |
| 11 border-image-slice: calc(10 + 5); | |
| 12 } | |
| 13 #div2 { | |
| 14 border-image-slice: calc(5 - 10); | |
| 15 } | |
| 16 #div3 { | |
| 17 border-image-slice: calc(50% - 6); | |
|
alancutter (OOO until 2018)
2016/03/30 00:45:47
We should also test serialising these values from
| |
| 18 } | |
| 19 </style> | |
| 20 </head> | |
| 21 <body> | |
| 22 | |
| 23 <div id="div1"></div> | |
| 24 <div id="div2"></div> | |
| 25 <div id="div3"></div> | |
| 26 | |
| 27 </body> | |
| 28 </html> | |
| OLD | NEW |