| 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 .rightnormal { |
| 6 width: 30px; |
| 7 height: 100px; |
| 8 } |
| 9 .rightnarrow { |
| 10 width: 10px; |
| 11 height: 100px; |
| 12 } |
| 13 .bottomnormal { |
| 14 width: 100px; |
| 15 height: 30px; |
| 16 } |
| 17 .bottomnarrow { |
| 18 width: 100px; |
| 19 height: 10px; |
| 20 } |
| 21 .limecolor { |
| 22 background-color: lime; |
| 23 } |
| 24 .redcolor { |
| 25 background-color: red; |
| 26 } |
| 27 </style> |
| 28 <table cellpadding='0' cellspacing='0'> |
| 29 <tr> |
| 30 <td> |
| 31 <div class='rightnarrow redcolor'</div> |
| 32 </td> |
| 33 <td> |
| 34 <div class='rightnormal limecolor'</div> |
| 35 </td> |
| 36 <td> |
| 37 <div class='rightnormal redcolor'</div> |
| 38 </td> |
| 39 <td> |
| 40 <div class='rightnormal limecolor'</div> |
| 41 </td> |
| 42 </tr> |
| 43 </table> |
| 44 |
| 45 <div class='bottomnarrow redcolor'></div> |
| 46 <div class='bottomnormal limecolor'></div> |
| 47 <div class='bottomnormal redcolor'></div> |
| 48 <div class='bottomnormal limecolor'></div> |
| OLD | NEW |