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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/multicol-repaint-expected.html

Issue 2560073002: Hopefully deflake some tests, by preloading the Ahem font. (Closed)
Patch Set: Created 4 years 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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 2
3 <html lang="en"> 3 <html lang="en">
4 <head> 4 <head>
5 <script src="../../resources/ahem.js"></script>
5 <style type="text/css" media="screen"> 6 <style type="text/css" media="screen">
6 7
7 .container { 8 .container {
8 width: 400px; 9 width: 400px;
9 height: 100px; 10 height: 100px;
10 border: 1px solid black; 11 border: 1px solid black;
11 font-size: 50px; 12 font-size: 50px;
12 -webkit-column-count: 2; 13 -webkit-column-count: 2;
13 column-count: 2; 14 column-count: 2;
14 column-fill: auto; 15 column-fill: auto;
15 } 16 }
16 17
17 span { 18 span {
18 font-family: Ahem; 19 font-family: Ahem;
19 } 20 }
20 </style> 21 </style>
21 </head> 22 </head>
22 <body> 23 <body>
23 24
24 <div class="container"> 25 <div class="container">
25 &nbsp;<br> 26 &nbsp;<br>
26 <span id="a">XXXXXX</span> 27 <span id="a">XXXXXX</span>
27 </div> 28 </div>
28 </body> 29 </body>
29 </html> 30 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698