| OLD | NEW |
| (Empty) | |
| 1 <!doctype html> |
| 2 <title>Test non-top-left background-position anchors together with repeating bac
kgrounds</title> |
| 3 <style> |
| 4 body { margin: 0 } |
| 5 div { |
| 6 width: 100px; |
| 7 height: 100px; |
| 8 } |
| 9 .anchor-right { |
| 10 background-image: linear-gradient(to left, lime 30px, red 30px); |
| 11 background-size: 60px 100px; |
| 12 background-position: top 0 right 0; |
| 13 } |
| 14 .anchor-bottom { |
| 15 background-image: linear-gradient(to bottom, red 30px, lime 30px); |
| 16 background-size: 100px 60px; |
| 17 background-position: bottom 0 left 0; |
| 18 } |
| 19 </style> |
| 20 <div class="anchor-right"></div> |
| 21 <div class="anchor-bottom"></div> |
| OLD | NEW |