Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(111)

Side by Side Diff: LayoutTests/fast/css3-text/css3-text-decoration/text-underline-position/text-underline-position-all.html

Issue 57493002: Remove 'alphabetic' value from text-underline-position (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 line should cross the 'p' letter in the word 'ipsum'. Under should not cross the 'p' letter.</p>
12 alphabetic, so they should look the same, that is, the horizontal line
13 should cross the 'p' letter in the word 'ipsum'. Under should not cross the
14 'p' letter. Bugzilla link: http://webkit.org/b/102795.</p>
Julien - ping for review 2013/11/04 16:06:43 Let's keep the bugzilla link as it still gives som
abinader 2013/11/04 16:38:02 Ack!
15
16 <div class="auto">auto lorem ipsum</div> 12 <div class="auto">auto lorem ipsum</div>
17 <div class="alphabetic">alphabetic lorem ipsum</div>
18 <div class="under">under lorem ipsum</div> 13 <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> 14 <div class="auto">auto lorem ipsum <span class="under">under lorem ipsum</sp an></div>
20 </body> 15 </body>
21 </html> 16 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698