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

Side by Side Diff: LayoutTests/fast/table/table-row-before-child-style-update.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, 5 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 <!-- The blue and green text boxes should not overlap --> 1 <!-- The blue and green text boxes should not overlap -->
2 <html> 2 <html>
3 <script src="../../resources/ahem.js"></script>
3 <body style="font: 1em/1 Ahem, sans-serif;"> 4 <body style="font: 1em/1 Ahem, sans-serif;">
4 <style> 5 <style>
5 div::before { 6 div::before {
6 content: "ABCD"; 7 content: "ABCD";
7 color: blue; 8 color: blue;
8 display: table-row; 9 display: table-row;
9 } 10 }
10 </style> 11 </style>
11 <div id="test" style="color: green">ABC</div> 12 <div id="test" style="color: green">ABC</div>
12 <script> 13 <script>
13 document.getElementById('test').style.fontSize= "800%"; 14 document.getElementById('test').style.fontSize= "800%";
14 </script> 15 </script>
15 </body> 16 </body>
16 </html> 17 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698