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

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

Issue 403723004: Add several repaint tests in case of table resize (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase Created 6 years, 5 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
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <script src="../../fast/repaint/resources/text-based-repaint.js"></script>
3 <script>
4 function repaintTest() {
5 document.getElementById('row').style.height = '200px';
6 }
7 runRepaintTest();
8 </script>
9 <style>
10 body {
11 margin: 0;
12 }
13 tr {
14 height: 100px;
15 }
16 td {
17 width: 100px;
18 }
19 </style>
20 <table>
dsinclair 2014/07/23 16:57:29 Success description?
Xianzhu 2014/07/23 17:31:48 Done.
21 <tr id="row">
22 <td>MIDDLE</td>
23 </tr>
24 </table>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698