| Index: third_party/WebKit/LayoutTests/fragmentation/single-line-cells-repeating-thead-break-inside-on-thead-only.html
|
| diff --git a/third_party/WebKit/LayoutTests/fragmentation/single-line-cells-repeating-thead-break-inside-on-thead-only.html b/third_party/WebKit/LayoutTests/fragmentation/single-line-cells-repeating-thead-break-inside-on-thead-only.html
|
| index 534858a7f90fbafb8b8ebe7d53b3abb277a41a07..492f8ac239800c18494524b46642c0bd22f25d7e 100644
|
| --- a/third_party/WebKit/LayoutTests/fragmentation/single-line-cells-repeating-thead-break-inside-on-thead-only.html
|
| +++ b/third_party/WebKit/LayoutTests/fragmentation/single-line-cells-repeating-thead-break-inside-on-thead-only.html
|
| @@ -1,4 +1,5 @@
|
| <!DOCTYPE html>
|
| +<script src="../fast/repaint/resources/text-based-repaint.js"></script>
|
| <style>
|
| table {
|
| border-collapse: collapse;
|
| @@ -16,7 +17,7 @@ thead {
|
| <table>
|
| <thead>
|
| <tr>
|
| - <th>Col 1</th>
|
| + <th id="target">Col 1</th>
|
| <th>Col 2</th>
|
| </tr>
|
| </thead>
|
| @@ -47,4 +48,10 @@ thead {
|
| </tbody>
|
| </table>
|
| </div>
|
| -
|
| +<script>
|
| +onload = runRepaintAndPixelTest;
|
| +function repaintTest()
|
| +{
|
| + target.style.color = 'red';
|
| +}
|
| +</script>
|
|
|