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

Side by Side Diff: LayoutTests/fast/dynamic/first-letter-after-list-marker.html

Issue 1204023002: Deflake tests using ahem font with @font-face. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebaseline and fix an svg test Created 5 years, 6 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 | Annotate | Revision Log
OLDNEW
1 <script src="../../resources/ahem.js"></script>
1 <style> 2 <style>
2 li:first-letter { color: red; } 3 li:first-letter { color: red; }
3 li.green:first-letter { color: green; } 4 li.green:first-letter { color: green; }
4 </style> 5 </style>
5 <ul style="font-family: Ahem; font-size: 100px; -webkit-font-smoothing: none;"> 6 <ul style="font-family: Ahem; font-size: 100px; -webkit-font-smoothing: none;">
6 <li id="target">a</li> 7 <li id="target">a</li>
7 </ul> 8 </ul>
8 <script> 9 <script>
9 document.body.offsetTop; 10 document.body.offsetTop;
10 document.getElementById("target").className = "green"; 11 document.getElementById("target").className = "green";
11 </script> 12 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698