OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <style> |
| 3 .ref span { display:inline-block; width:1em; } |
| 4 </style> |
| 5 <p>Test insertion of a spanner that comes right after another spanner, and prece
des column content.</p> |
| 6 <p>There should be four lines below with the word "PASS". Letter spacing is expe
cted to |
| 7 vary. The first line should be in <span style="color:green;">green</span>. The s
econd one |
| 8 in <span style="color:blue;">blue</span>, the third one |
| 9 in <span style="color:olive;">olive</span>, and the fourth one |
| 10 in <span style="color:orange;">orange</span>.</p> |
| 11 <div class="ref" style="color:green;"> |
| 12 <span>P</span><span>A</span><span>S</span><span>S</span> |
| 13 </div> |
| 14 <div style="color:blue;">PASS</div> |
| 15 <div style="color:olive;">PASS</div> |
| 16 <div class="ref" style="color:orange;"> |
| 17 <span>P</span><span>A</span><span>S</span><span>S</span> |
| 18 </div> |
OLD | NEW |