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

Side by Side Diff: LayoutTests/fast/css/first-letter-different-renderers-expected.html

Issue 207553007: Apply the correct style to first-letter pseudo elements composed of different renderers (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 9 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
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style type="text/css">
5 h1 { margin: 0px; }
6 .bigRedText, .bigRedText a { font-size:20px; font-weight: bold; color: red; }
7 ul li { list-style-type: none; }
8 </style>
9 </head>
10 <body>
11 <div>
12 <h1>Multiple paragraphs inside nested block</h1>
13 <div class="testDiv">
14 <div>
15 <p><span class="bigRedText">&ldquo;(A)&rdquo;:</span> Appetizers</p>
16 <p>&ldquo;(<a href="#">B</a>)&rdquo;: <a href="#">Starters:</a> Soups & Salads</p>
17 <p>&ldquo;<b>(</b><a href="#">C</a><b>)</b>&rdquo;: Main Course: <a href ="#">Pasta</a></p>
18 </div>
19 </div>
20 <h1>List with spaces after the leading dot</h1>
21 <ul>
22 <li>&middot; Appetizers</li>
23 <li>&middot; <a href="#">Starters:</a> Soups & Salads</li>
24 <li>&middot; Main Course: <a href="#">Pasta</a></li>
25 </ul>
26 <h1>List without spaces after the leading dot</h1>
27 <ul>
28 <li><span class="bigRedText">&middot;A</span>ppetizers</li>
29 <li><span class="bigRedText">&middot;S</span><a href="#">tarters:</a> Soup s & Salads</li>
30 <li><span class="bigRedText">&middot;M</span>ain Course: <a href="#">Pasta </a></li>
31 </ul>
32 <h1>first-letter with multiple punctuation characters</h1>
33 <ul>
34 <li><span class="bigRedText">&ldquo;(A)&rdquo;:</span> Appetizers</li>
35 <li><span class="bigRedText">&ldquo;(B)&rdquo;:</span> <a href="#">Starter s:</a> Soups & Salads</li>
36 <li><span class="bigRedText">&ldquo;(C)&rdquo;:</span> Main Course: <a hre f="#">Pasta</a></li>
37 </ul>
38 </div>
39 </body>
40 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698