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

Side by Side Diff: LayoutTests/fast/table/simple_paint.html

Issue 3590023: Merge 69161 - 2010-10-05 Fady Samuel <fsamuel@chromium.org>... (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/517/
Patch Set: Created 10 years, 2 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
« no previous file with comments | « LayoutTests/ChangeLog ('k') | LayoutTests/fast/table/simple_paint-expected.checksum » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <title>Simple Table Painting</title> 3 <title>Simple Table Painting</title>
4 <style> 4 <style>
5 table.testtable { border: 1px solid black; border-collapse:collapse; backgro und-color: green; } 5 table.testtable { border: 1px solid black; border-collapse:collapse; backg round-color: green; }
6 table.testtable td { border: 1px solid black; font-size: 20px; background-c olor: green; width:60px; height:60px; direction:rtl;} 6 table.testtable td { border: 1px solid black; font-size: 20px; background -color: green; width:60px; height:60px; direction:rtl;}
7 body { margin: 0px 0px 0px 0px; } 7 body { margin: 0px; }
8 </style> 8 </style>
9 <script> 9 <script>
10 if (window.layoutTestController) { 10 if (window.layoutTestController) {
11 window.layoutTestController.waitUntilDone(); 11 window.layoutTestController.waitUntilDone();
12 } 12 }
13 </script> 13 function repaintTest() {
14 var testCell = document.getElementById("testcell");
15 var offset = document.body.offsetTop;
16 testCell.style.backgroundColor = "green";
17 if (window.layoutTestController) {
18 window.layoutTestController.notifyDone();
19 }
20 }
21 </script>
22 <script type="text/javascript" src="../repaint/resources/repaint.js"></scrip t>
14 </head> 23 </head>
15 <body> 24 <body onload="runRepaintTest()">
16 <table class="testtable"> 25 <table class="testtable">
17 <tr> 26 <tr>
18 <td></td> 27 <td></td>
19 <td></td> 28 <td></td>
20 <td></td> 29 <td></td>
21 <td></td> 30 <td></td>
22 <td></td> 31 <td></td>
23 </tr> 32 </tr>
24 <tr> 33 <tr>
25 <td></td> 34 <td></td>
(...skipping 18 matching lines...) Expand all
44 </tr> 53 </tr>
45 <tr> 54 <tr>
46 <td></td> 55 <td></td>
47 <td></td> 56 <td></td>
48 <td></td> 57 <td></td>
49 <td></td> 58 <td></td>
50 <td></td> 59 <td></td>
51 </tr> 60 </tr>
52 </table> 61 </table>
53 <script> 62 <script>
54 var testCell = document.getElementById("testcell"); 63
55 var offset = document.body.offsetTop;
56 testCell.style.backgroundColor = "green";
57 if (window.layoutTestController) {
58 window.layoutTestController.notifyDone();
59 }
60 </script> 64 </script>
61 </body> 65 </body>
62 </html> 66 </html>
OLDNEW
« no previous file with comments | « LayoutTests/ChangeLog ('k') | LayoutTests/fast/table/simple_paint-expected.checksum » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698