Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <style> | |
| 3 div { | |
| 4 background-image: -webkit-repeating-linear-gradient(top left, white, blu e 90px); | |
| 5 background-origin: content-box; | |
| 6 } | |
| 7 | |
| 8 #a { | |
| 9 width: 100px; | |
| 10 height: 100px; | |
| 11 } | |
| 12 | |
| 13 #b { | |
| 14 border: 1px solid black; | |
| 15 width: 98px; | |
| 16 height: 98px; | |
| 17 } | |
| 18 </style> | |
| 19 | |
| 20 <div id=a></div> | |
| 21 <div id=b></div> | |
| 22 | |
| 23 The gradients should fill the entire boxes and not repeat. | |
| 24 | |
| OLD | NEW |