MNT Table header closed tag position

This commit is contained in:
Sabina Talipova 2023-10-31 15:41:06 +13:00
parent 87f829a729
commit 50aaf9a9d5
1 changed files with 1 additions and 1 deletions

View File

@ -255,7 +255,7 @@ EOS
$editor->setEditorConfig($restrictedConfig);
$expectedHtmlString = '<p>standard text</p>Header';
$htmlValue = '<p>standard text</p><table><th><tr><td>Header</td></tr></th><tbody></tbody></table>';
$htmlValue = '<p>standard text</p><table><th></th><tr><td>Header</td></tr><tbody></tbody></table>';
$editor->setValue($htmlValue);
$editor->saveInto($obj);
$this->assertEquals($expectedHtmlString, $obj->Content, 'Table is not removed');