Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/fragmentation/single-large-cell-with-header-expected.html |
| diff --git a/third_party/WebKit/LayoutTests/fragmentation/single-large-cell-with-header-expected.html b/third_party/WebKit/LayoutTests/fragmentation/single-large-cell-with-header-expected.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..384b4b748ef6a9ef579fa32fc3d2d4be3973e63b |
| --- /dev/null |
| +++ b/third_party/WebKit/LayoutTests/fragmentation/single-large-cell-with-header-expected.html |
| @@ -0,0 +1,43 @@ |
| +<!DOCTYPE html> |
| +<style> |
| +td, th { |
| + background-color: #ddd; |
| + border: 1px solid black; |
| +} |
| +tr { |
|
mstensho (USE GERRIT)
2016/12/12 19:22:40
Couldn't you just remove this selector?
|
| + break-inside: avoid; |
| +} |
| +</style> |
| +<p>crbug.com/669690: If the body's first row doesn't fit on a page then don't repeat headers.</p> |
| +<div style="columns:3; line-height: 18px; column-fill: auto; height:74px; background-color: yellow;"> |
| + <table> |
| + <thead> |
| + <tr> |
| + <th>Col 1</th> |
| + </tr> |
| + </thead> |
| + <tr><td> |
| + <p>1</p> |
| + <p>2</p> |
| + <p>3</p> |
| + <p>4</p> |
| + <p>5</p> |
| + <p>6</p> |
| + <p>7</p> |
| + <p>8</p> |
| + <p>9</p> |
| + |
| + <p>10</p> |
| + <p>11</p> |
| + <p>12</p> |
| + <p>13</p> |
| + <p>14</p> |
| + <p>15</p> |
| + <p>16</p> |
| + <p>17</p> |
| + <p>18</p> |
| + <p>19</p> |
| + </td></tr> |
| + </table> |
| +</div> |
| + |