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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/repaint/multicol-repaint.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, 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
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 16
17 span { 17 span {
18 font-family: Ahem; 18 font-family: Ahem;
19 } 19 }
20 </style> 20 </style>
21 <script src="resources/text-based-repaint.js" type="text/javascript"></script> 21 <script src="resources/text-based-repaint.js" type="text/javascript"></script>
22 <script type="text/javascript"> 22 <script type="text/javascript">
23 function repaintTest() 23 function repaintTest()
24 { 24 {
25 document.getElementById('a').innerHTML = 'XXXXXX'; 25 document.getElementById('a').innerHTML = 'XXXXXX';
26 } 26 }
27 </script> 27 </script>
28 </head> 28 </head>
29 <body onload="runRepaintTest();"> 29 <body onload="runRepaintAndPixelTest();">
30 30
31 <div class="container"> 31 <div class="container">
32 &nbsp;<br> 32 &nbsp;<br>
33 <span id="a">x</span> 33 <span id="a">x</span>
34 </div> 34 </div>
35 </body> 35 </body>
36 </html> 36 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698