OLD | NEW |
1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <script> | 4 <script> |
5 if (window.testRunner) | 5 if (window.testRunner) |
6 testRunner.dumpAsTextWithPixelResults(); | 6 testRunner.dumpAsTextWithPixelResults(); |
7 </script> | 7 </script> |
8 <link rel="stylesheet" type="text/css" href="style.css"> | 8 <link rel="stylesheet" type="text/css" href="style.css"> |
9 </head> | 9 </head> |
10 <body> | 10 <body> |
11 <p>Test if each value (auto, alphabetic and under) works. Auto defaults to | 11 <p>Test if each value (auto and under) works. Auto means the horizontal |
12 alphabetic, so they should look the same, that is, the horizontal line | 12 line should cross the 'p' letter in the word 'ipsum'. Under should not |
13 should cross the 'p' letter in the word 'ipsum'. Under should not cross the | 13 cross the 'p' letter. Bugzilla link: http://webkit.org/b/102795.</p> |
14 'p' letter. Bugzilla link: http://webkit.org/b/102795.</p> | |
15 | |
16 <div class="auto">auto lorem ipsum</div> | 14 <div class="auto">auto lorem ipsum</div> |
17 <div class="alphabetic">alphabetic lorem ipsum</div> | |
18 <div class="under">under lorem ipsum</div> | 15 <div class="under">under lorem ipsum</div> |
19 <div class="auto">auto lorem ipsum <span class="under">under lorem ipsum</sp
an> <span class="alphabetic">alphabetic lorem ipsum</span></div> | 16 <div class="auto">auto lorem ipsum <span class="under">under lorem ipsum</sp
an></div> |
20 </body> | 17 </body> |
21 </html> | 18 </html> |
OLD | NEW |