Skip to content

Commit

Permalink
#291 #169 - Failing test for fine lines appearing between tds with a …
Browse files Browse the repository at this point in the history
…background color.
  • Loading branch information
danfickle committed Nov 11, 2018
1 parent 1d36988 commit f826ad8
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<html>
<head>
<style>
td {
min-width: 100px;
background-color: blue;
min-height: 20px;
}
</style>
</head>
<body>
<table style="border-collapse: collapse;">
<tr>
<td></td><td></td><td></td>
</tr>
<tr>
<td></td><td></td><td></td>
</tr>
</table>
</body>
</html>
Original file line number Diff line number Diff line change
Expand Up @@ -581,6 +581,15 @@ public void testRtlPageOverflowHiddenHidden() throws IOException {
assertTrue(vt.runTest("rtl-page-overflow-hidden-hidden"));
}

/**
* Tests that tds with a background-color do not have fine lines between them. Issues: 291 and 169.
*/
@Test
@Ignore // Fine lines appear between tds.
public void testTableFineLines() throws IOException {
assertTrue(vt.runTest("table-fine-lines"));
}

// TODO:
// + Elements that appear just on generated overflow pages. Especially inline-block.
// + content property (page counters, etc)
Expand Down

0 comments on commit f826ad8

Please sign in to comment.