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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/multicol-repaint.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;
(...skipping 12 matching lines...) Expand all
27 </script> 28 </script>
28 </head> 29 </head>
29 <body onload="runRepaintAndPixelTest();"> 30 <body onload="runRepaintAndPixelTest();">
30 31
31 <div class="container"> 32 <div class="container">
32 &nbsp;<br> 33 &nbsp;<br>
33 <span id="a">x</span> 34 <span id="a">x</span>
34 </div> 35 </div>
35 </body> 36 </body>
36 </html> 37 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698