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

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

Issue 1994373002: Convert some repaint tests into ref tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 2
3 <html lang="en"> 3 <html lang="en">
4 <head> 4 <head>
5 <style type="text/css" media="screen"> 5 <style type="text/css" media="screen">
6 6
7 .container { 7 .container {
8 width: 400px; 8 width: 400px;
9 height: 100px; 9 height: 100px;
10 border: 1px solid black; 10 border: 1px solid black;
11 font-size: 50px; 11 font-size: 50px;
12 -webkit-column-count: 2; 12 -webkit-column-count: 2;
13 column-count: 2; 13 column-count: 2;
14 column-fill: auto; 14 column-fill: auto;
15 } 15 }
16
17 span {
18 font-family: Ahem;
19 }
16 </style> 20 </style>
17 </head> 21 </head>
18 <body"> 22 <body>
19 23
20 <div class="container"> 24 <div class="container">
21 &nbsp;<br> 25 &nbsp;<br>
22 <span id="a">XXXXXX</span> 26 <span id="a">XXXXXX</span>
23 </div> 27 </div>
24 </body> 28 </body>
25 </html> 29 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698