Table Cell Wrapping issue on HTML to PDF import

The following code results in the table cells wrapping unexpectedly when saving to PDF. This does not happen when saving to DOCX. It only seems to happen when the font-family is specified on the table cell:

var html = @"
<html>
	<body>
		<table>
			<tr>
				<td>
					<table>
						<tr>
							<td style='font-family:Arial;'>Available Funding</td>
							<td style='font-family:Arial;'>Shortfall</td>
						</tr>
					</table>
				</td>	
			</tr>
		</table>
	</body>
</html>";
var stream = new MemoryStream((System.Text.UnicodeEncoding.UTF8.GetBytes(html)));
Document doc = new Document(stream);

doc.Save("PDFCellWrapTest.pdf");

Hi Matt,

Thanks for your inquiry. I have tested the scenario and have managed to reproduce the
same issue at my side. For the sake of correction, I have logged this
problem in our issue tracking system as WORDSNET-10958. I have linked
this forum thread to the same issue and you will be notified via this
forum thread once this issue is resolved.

We apologize for your inconvenience.

The issues you have found earlier (filed as WORDSNET-10958) have been fixed in this Aspose.Words for .NET 22.8 update also available on NuGet.