4896117323
Description: Writer getting Hang while opening document because of loop in layout. Root cause: For Documents containing table with direct formatting for Para line spacing along with style w:type="table" in style.xml LO was erasing PROP_PARA_LINE_SPACING Prop from pAllCellProps in DomainMapperTableHandler::endTableGetCellProperties(). But for Documents without direct formatting for Para line spacing this deletion was causing problem, as after deletion there is no formatting available to apply. To fix this checking whether there is a Direct formatting available for table, if Yes then proceed with this deletion logic. Change-Id: Ibaf51ebd1aca93eff44a9edfbe8fa13832ab2b70 Signed-off-by: Michael Stahl <mstahl@redhat.com> |
||
---|---|---|
.. | ||
complex | ||
core | ||
extras | ||
python | ||
tiledrendering | ||
unoapi | ||
README |
You can find different types of Writer tests here, the most interesting ones: - core/filters-test: loads different file types (see SwFiltersTest::testCVEs() for the list of supported filter types), and only makes sure Writer does not crash. To add new tests, you just need to drop in the test files to the relevant directory, no code change is necessary. - core/uwriter: this test has access to private Writer symbols, add new tests here if you need that. - extras: see its own README -- executes import and export filters and asserts the UNO model to verify the resulting document is the expected one.