Skip to content

Commit

Permalink
Fix: Tabs must be used to indent lines; spaces are not allowed
Browse files Browse the repository at this point in the history
  • Loading branch information
potupchik-sveak committed Mar 22, 2018
1 parent a182d1a commit b1d8be3
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions tests/Issues/Issue654Test.php
Expand Up @@ -6,18 +6,18 @@ class Issue654Test extends \Mpdf\BaseMpdfTest
{
public function testMinWidthUndefined()
{
$html = '<table cellpadding="0" cellspacing="0" width="1500">
<tr>
<td width="750">
<table cellspacing="0" width="750">
<tr>
<td width="750">
</td>
</tr>
</table>
</td>
</tr>
</table>';
$html = '<table cellpadding="0" cellspacing="0" width="1500">
<tr>
<td width="750">
<table cellspacing="0" width="750">
<tr>
<td width="750">
</td>
</tr>
</table>
</td>
</tr>
</table>';

$this->mpdf->WriteHTML($html);
$output = $this->mpdf->output('', 'S');
Expand Down

0 comments on commit b1d8be3

Please sign in to comment.