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

Side by Side Diff: LayoutTests/virtual/fasttextautosizing/fast/text-autosizing/list-marker-with-links-autosizing-expected.html

Issue 145003009: Autosize list markers. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@tot
Patch Set: Update TestExpectations. Created 6 years, 10 months 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
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html style="font-size: 16px"> 2 <html style="font-size: 16px">
3 <head> 3 <head>
4 4
5 <meta name="viewport" content="width=800"> 5 <meta name="viewport" content="width=800">
6 <style> 6 <style>
7 body { 7 body {
8 width: 800px; 8 width: 800px;
9 margin: 0; 9 margin: 0;
10 overflow-y: hidden; 10 overflow-y: hidden;
11 overflow-x: hidden; 11 overflow-x: hidden;
12 } 12 }
13 </style> 13 </style>
14 14
15 </head> 15 </head>
16 <body> 16 <body>
17 17
18 <div style="font-size: 2.5rem"> 18 <div style="font-size: 2.5rem">
19 The below list items should be autosized to 40px computed font-size (16 * 800/32 0). Also the corresponding list markers should increase in size appropriately. T he whole list is shifted to the right by 8px (14 (autosized marker width) * (1 - 1/2.5) rounded) to compensate the scaling of list item markers and make sure th ey don't get chopped off. 19 The below list items should be autosized to 40px computed font-size (16 * 800/32 0). Also the corresponding list markers should increase in size appropriately. T he whole list is shifted to the right by 8px (14 (autosized marker width) * (1 - 1/2.5) rounded) to compensate the scaling of list item markers and make sure th ey don't get chopped off.
20 </div> 20 </div>
21 <ul style="-webkit-margin-start: 8px"> 21 <ul>
22 <li style="font-size: 2.5rem"><a>List item with a link</a></li> 22 <li style="font-size: 2.5rem"><a>List item with a link</a></li>
23 <li style="font-size: 2.5rem"><b>List item with bold text</b></li> 23 <li style="font-size: 2.5rem"><b>List item with bold text</b></li>
24 <li style="font-size: 2.5rem">Simple plain list item</li> 24 <li style="font-size: 2.5rem">Simple plain list item</li>
25 <li style="font-size: 2.5rem"><a>List item with a link as part of anonymous bloc k</a><div></div></li> 25 <li style="font-size: 2.5rem"><a>List item with a link as part of anonymous bloc k</a><div></div></li>
26 </ul> 26 </ul>
27 27
28 </body> 28 </body>
29 </html> 29 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698