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

Side by Side Diff: LayoutTests/fast/repaint/table-row-bg-change.html

Issue 214513008: Add layout test for table repainting. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | LayoutTests/fast/repaint/table-row-bg-change-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <html>
2 <head>
3 <title>Test for crbug.com/357291</title>
4 <script src="resources/text-based-repaint.js" type="text/javascript"></scrip t>
5 <script type="text/javascript">
6 function repaintTest()
7 {
8 var first = document.getElementById('first');
9 first.style.backgroundColor = 'red';
10 }
11 </script>
12 <style>
13 table {
14 height: 200px;
15 width: 200px;
16 }
17 </style>
18
19 </head>
20 <body onload="runRepaintTest()">
21 <table>
22 <tr id="first">
23 <td>A</td>
24 <td>A</td>
25 <td>A</td>
26 </tr>
27 <tr>
28 <td>A</td>
29 <td>A</td>
30 <td>A</td>
31 </tr>
32 </table>
33 </body>
34 </html>
35
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/repaint/table-row-bg-change-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698