diff options
author | László Németh <nemeth@numbertext.org> | 2020-10-02 12:55:04 +0200 |
---|---|---|
committer | László Németh <nemeth@numbertext.org> | 2020-10-02 16:24:32 +0200 |
commit | c37f2b927715ebbeffcc1d7a1e9d646f1611c4ec (patch) | |
tree | 9f9c9be2938813f60b8479c74323c46f48c89572 /sw | |
parent | e31474d71235bccee8568c4a952a8319bddf39e0 (diff) |
tdf#136850 DOCX: fix change tracking in floating tables
Deleted text still reappeared as normal text in floating
tables in the case of combination with tracked paragraph
property changes.
Follow-up of commit 288db6eb47fbbd2b3ca34ffea0686d8ed8ed9be9
(tdf#132271 DOCX: import change tracking in floating tables)
and commit 464a7b0631335a8f8729512b8c27f864747f56a7
(tdf#136667 DOCX import: fix crash of floating tables).
Change-Id: I2c8f63054520ce28306c063ef638756f7d8342e9
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/103832
Tested-by: Jenkins
Reviewed-by: László Németh <nemeth@numbertext.org>
Diffstat (limited to 'sw')
-rw-r--r-- | sw/qa/extras/ooxmlexport/data/tdf136850.docx | bin | 0 -> 31943 bytes | |||
-rw-r--r-- | sw/qa/extras/ooxmlexport/ooxmlexport11.cxx | 7 |
2 files changed, 7 insertions, 0 deletions
diff --git a/sw/qa/extras/ooxmlexport/data/tdf136850.docx b/sw/qa/extras/ooxmlexport/data/tdf136850.docx Binary files differnew file mode 100644 index 000000000000..e94a66208e0d --- /dev/null +++ b/sw/qa/extras/ooxmlexport/data/tdf136850.docx diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport11.cxx b/sw/qa/extras/ooxmlexport/ooxmlexport11.cxx index e7b996562803..e45d99c6d2d7 100644 --- a/sw/qa/extras/ooxmlexport/ooxmlexport11.cxx +++ b/sw/qa/extras/ooxmlexport/ooxmlexport11.cxx @@ -998,6 +998,13 @@ DECLARE_OOXMLEXPORT_EXPORTONLY_TEST(testTdf136667, "tdf136667.docx") assertXPath(pXmlDoc, "//w:ins", 4); } +DECLARE_OOXMLEXPORT_EXPORTONLY_TEST(testTdf136850, "tdf136850.docx") +{ + xmlDocUniquePtr pXmlDoc = parseExport("word/document.xml"); + // import change tracking in floating tables + assertXPath(pXmlDoc, "//w:del"); +} + DECLARE_OOXMLEXPORT_EXPORTONLY_TEST(testTdf128156, "tdf128156.docx") { xmlDocUniquePtr pXmlDoc = parseExport("word/document.xml"); |