| Index: LayoutTests/fast/repaint/table-row-bg-change.html
|
| diff --git a/LayoutTests/fast/repaint/table-row-bg-change.html b/LayoutTests/fast/repaint/table-row-bg-change.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..83eba09fc93ecb0dbf8dc0ee20290c0ec14babda
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/repaint/table-row-bg-change.html
|
| @@ -0,0 +1,35 @@
|
| +<html>
|
| +<head>
|
| + <title>Test for crbug.com/357291</title>
|
| + <script src="resources/text-based-repaint.js" type="text/javascript"></script>
|
| + <script type="text/javascript">
|
| + function repaintTest()
|
| + {
|
| + var first = document.getElementById('first');
|
| + first.style.backgroundColor = 'red';
|
| + }
|
| + </script>
|
| + <style>
|
| + table {
|
| + height: 200px;
|
| + width: 200px;
|
| + }
|
| + </style>
|
| +
|
| +</head>
|
| +<body onload="runRepaintTest()">
|
| + <table>
|
| + <tr id="first">
|
| + <td>A</td>
|
| + <td>A</td>
|
| + <td>A</td>
|
| + </tr>
|
| + <tr>
|
| + <td>A</td>
|
| + <td>A</td>
|
| + <td>A</td>
|
| + </tr>
|
| + </table>
|
| +</body>
|
| +</html>
|
| +
|
|
|