Skip to content

Commit

Permalink
#466 Minimal test showing infinite loop involving fixed table, colspa…
Browse files Browse the repository at this point in the history
…n and break-word. [ci skip]
  • Loading branch information
danfickle committed Apr 21, 2020
1 parent c4677bd commit bf717f4
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<table style="width: 3px;table-layout: fixed;">
<tr>
<td colspan="2"></td>
<td style="word-wrap: break-word;">ABC</td>
</tr>
</table>
Original file line number Diff line number Diff line change
Expand Up @@ -1016,6 +1016,16 @@ public void testIssue459RemUnitDefault() throws IOException {
assertTrue(vt.runTest("issue-459-rem-unit-default"));
}

/**
* Tests a reported infinite loop bug with table cells in specific
* circumstances.
*/
@Test
@Ignore // Infinite loop w memory allocation.
public void testIssue466InfiniteLoopTableCellBox() throws IOException {
assertTrue(vt.runTest("issue-466-infinite-loop-table-cell-box"));
}

/**
* Tests what the CSS content property is capable of.
*/
Expand Down

0 comments on commit bf717f4

Please sign in to comment.