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

Side by Side Diff: LayoutTests/fast/css/first-letter-different-renderers.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 <html>
2 <head>
3 <style>
4 h1 { margin: 0px; }
5 div.testDiv:first-letter, ul li:first-letter { font-size:20px; font-weight: bold; color: red; }
6 ul li { list-style-type: none; }
7 </style>
8 </head>
9 <body>
10 <div>
11 <h1>Multiple paragraphs inside nested block</h1>
12 <div class="testDiv">
13 <div>
14 <p>&ldquo;(A)&rdquo;: Appetizers</p>
15 <p>&ldquo;(<a href="#">B</a>)&rdquo;: <a href="#">Starters:</a> Soups & Salads</p>
16 <p>&ldquo;<b>(</b><a href="#">C</a><b>)</b>&rdquo;: Main Course: <a href ="#">Pasta</a></p>
17 </div>
18 </div>
19 <h1>List with spaces after the leading dot</h1>
20 <ul>
21 <li>&middot; Appetizers</li>
22 <li>&middot; <a href="#">Starters:</a> Soups & Salads</li>
23 <li>&middot; Main Course: <a href="#">Pasta</a></li>
24 </ul>
25 <h1>List without spaces after the leading dot</h1>
26 <ul>
27 <li>&middot;Appetizers</li>
28 <li>&middot;<a href="#">Starters:</a> Soups & Salads</li>
29 <li>&middot;Main Course: <a href="#">Pasta</a></li>
30 </ul>
31 <h1>first-letter with multiple punctuation characters</h1>
32 <ul>
33 <li>&ldquo;(A)&rdquo;: Appetizers</li>
34 <li>&ldquo;(<a href="#">B</a>)&rdquo;: <a href="#">Starters:</a> Soups & S alads</li>
35 <li>&ldquo;<b>(</b><a href="#">C</a><b>)</b>&rdquo;: Main Course: <a href= "#">Pasta</a></li>
36 </ul>
37 </div>
38 </body>
39 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698