| OLD | NEW |
| 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" | 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" |
| 2 "http://www.w3.org/TR/html4/loose.dtd"> | 2 "http://www.w3.org/TR/html4/loose.dtd"> |
| 3 <html> | 3 <html> |
| 4 <head> | 4 <head> |
| 5 <title>letter-spacing.html</title> | 5 <title>letter-spacing.html</title> |
| 6 <style type="text/css"> | 6 <style type="text/css"> |
| 7 body { overflow: hidden; } |
| 7 p { | 8 p { |
| 8 text-indent: 10em; | 9 text-indent: 10em; |
| 9 background-color: #eee; | 10 background-color: #eee; |
| 10 } | 11 } |
| 11 p.desc { | 12 p.desc { |
| 12 text-indent: 0em; | 13 text-indent: 0em; |
| 13 background-color: white; | 14 background-color: white; |
| 14 } | 15 } |
| 15 .opaque { | 16 .opaque { |
| 16 opacity: 0.5; | 17 opacity: 0.5; |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 <p class="desc">The next line tests a small negative line spacing, and | 141 <p class="desc">The next line tests a small negative line spacing, and |
| 141 should be blank.</p> | 142 should be blank.</p> |
| 142 <p><span class="ls-05 rtl opaque">Hello, world</span></p> | 143 <p><span class="ls-05 rtl opaque">Hello, world</span></p> |
| 143 | 144 |
| 144 <p class="desc">The next line tests a large negative line spacing, and | 145 <p class="desc">The next line tests a large negative line spacing, and |
| 145 it should be blank.</p> | 146 it should be blank.</p> |
| 146 <p><span class="ls-200 rtl opaque">Hello, world</span></p> | 147 <p><span class="ls-200 rtl opaque">Hello, world</span></p> |
| 147 | 148 |
| 148 </body> | 149 </body> |
| 149 </html> | 150 </html> |
| OLD | NEW |