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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/repaint/table-shrink-row-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 <html> 2 <html>
3 <head> 3 <head>
4 <style> 4 <style>
5 td { 5 td {
6 height: 50px; 6 height: 50px;
7 border: 5px solid grey; 7 border: 5px solid grey;
8 } 8 }
9 </style> 9 </style>
10 <script src="resources/text-based-repaint.js" type="text/javascript"></script>
11 <script>
12 function repaintTest()
13 {
14 var td = document.getElementById("resizeMe");
15 td.style.height = "0px";
16 }
17
18 window.addEventListener("load", runRepaintTest, false);
19 </script>
20 </head> 10 </head>
21 <body> 11 <body>
22 <p>This test checks that changing the size of the middle row triggers an invalid ation for the following rows.</p> 12 <p>This test checks that changing the size of the middle row triggers an invalid ation for the following rows.</p>
23 <table border="0" cellpadding="0" cellspacing="0" width="100%"> 13 <table border="0" cellpadding="0" cellspacing="0" width="100%">
24 <tr> 14 <tr>
25 <td>1</td> 15 <td>1</td>
26 </tr> 16 </tr>
27 <tr> 17 <tr>
28 <td id="resizeMe" style="height: 200px"></td> 18 <td id="resizeMe" style="height: 200px; height: 0"></td>
29 </tr> 19 </tr>
30 <tr> 20 <tr>
31 <td>2</td> 21 <td>2</td>
32 </tr> 22 </tr>
33 <tr> 23 <tr>
34 <td>3</td> 24 <td>3</td>
35 </tr> 25 </tr>
36 <tr> 26 <tr>
37 <td>4</td> 27 <td>4</td>
38 </tr> 28 </tr>
(...skipping 21 matching lines...) Expand all
60 <tr> 50 <tr>
61 <td>12</td> 51 <td>12</td>
62 </tr> 52 </tr>
63 <tr> 53 <tr>
64 <td>13</td> 54 <td>13</td>
65 </tr> 55 </tr>
66 </table> 56 </table>
67 57
68 </body> 58 </body>
69 </html> 59 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698