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

Side by Side Diff: LayoutTests/fast/table/table-row-style-not-updated-with-before-content.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 <!-- The orange, blue and green text boxes should not overlap --> 1 <!-- The orange, 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 #test 6 #test
6 { 7 {
7 color: blue; 8 color: blue;
8 display: table-row; 9 display: table-row;
9 } 10 }
10 #test::before 11 #test::before
11 { 12 {
12 content: "1234"; 13 content: "1234";
13 color: orange; 14 color: orange;
14 display: table-row; 15 display: table-row;
15 } 16 }
16 </style> 17 </style>
17 <div id="test"> 18 <div id="test">
18 ABCD 19 ABCD
19 </div> 20 </div>
20 <div style="font-size: 800%; color: green"> 21 <div style="font-size: 800%; color: green">
21 EFGH 22 EFGH
22 </div> 23 </div>
23 <script> 24 <script>
24 document.body.offsetTop; 25 document.body.offsetTop;
25 var test = document.getElementById("test"); 26 var test = document.getElementById("test");
26 test.style.fontSize = "800%"; 27 test.style.fontSize = "800%";
27 </script> 28 </script>
28 </body> 29 </body>
29 </html> 30 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698