diff options
author | Zolnai Tamás <zolnaitamas2000@gmail.com> | 2015-03-18 10:22:51 +0100 |
---|---|---|
committer | Zolnai Tamás <zolnaitamas2000@gmail.com> | 2015-03-21 16:19:07 +0100 |
commit | caf653c03b9152a93c3e5959921fe98adfb7d639 (patch) | |
tree | 36adce1243ada028d7fbd667eed5f629349efdd2 /sw/qa/extras/rtfexport | |
parent | 8f01925d98dabdbf400c9263e08242267b2b9701 (diff) |
Char highlight: RTF filters
Handle \highlightN and \chcbpatN separately.
Change-Id: I20546bd4c26154e8b1168f87dcb4ab44a192ad83
Diffstat (limited to 'sw/qa/extras/rtfexport')
-rw-r--r-- | sw/qa/extras/rtfexport/data/fdo79599.rtf | 38 | ||||
-rw-r--r-- | sw/qa/extras/rtfexport/rtfexport.cxx | 9 |
2 files changed, 0 insertions, 47 deletions
diff --git a/sw/qa/extras/rtfexport/data/fdo79599.rtf b/sw/qa/extras/rtfexport/data/fdo79599.rtf deleted file mode 100644 index f9087091e1b3..000000000000 --- a/sw/qa/extras/rtfexport/data/fdo79599.rtf +++ /dev/null @@ -1,38 +0,0 @@ -{\rtf1\deff0 -{\fonttbl -{\f000 Courier New;} -} -{\colortbl; -\red0\green0\blue0; -\red255\green255\blue0; -\red0\green255\blue0; -\red0\green255\blue255; -\red255\green0\blue255; -\red0\green0\blue255; -\red255\green0\blue0; -\red0\green0\blue128; -\red0\green128\blue128; -\red0\green128\blue0; -\red128\green0\blue128; -\red128\green0\blue0; -\red128\green128\blue0; -\red128\green128\blue128; -\red192\green192\blue192; -} -\highlight0 Should be ignored\par -\highlight2 #FFFF00 = Yellow\par -\highlight3 #00FF00 = Green\par -\highlight4 #00FFFF = Cyan\par -\highlight5 #FF00FF = Magenta\par -\highlight6 #0000FF = Blue\par -\highlight7 #FF0000 = Red\par -\highlight8 #000080 = Dark blue\par -\highlight9 #008080 = Dark cyan\par -\highlight10 #008000 = Dark green\par -\highlight11 #800080 = Dark magenta\par -\highlight12 #800000 = Dark red\par -\highlight13 #808000 = Dark yellow\par -\highlight14 #808080 = Dark gray\par -\highlight15 #C0C0C0 = Light gray\par -\highlight1 #000000 = Black\par -} diff --git a/sw/qa/extras/rtfexport/rtfexport.cxx b/sw/qa/extras/rtfexport/rtfexport.cxx index de571a2eda7e..3ef2f13bfc07 100644 --- a/sw/qa/extras/rtfexport/rtfexport.cxx +++ b/sw/qa/extras/rtfexport/rtfexport.cxx @@ -670,15 +670,6 @@ DECLARE_RTFEXPORT_TEST(testFdo77600, "fdo77600.rtf") CPPUNIT_ASSERT_EQUAL(OUString("Arial"), getProperty<OUString>(getRun(getParagraph(1), 3), "CharFontName")); } -DECLARE_RTFEXPORT_TEST(testFdo79599, "fdo79599.rtf") -{ - // test for \highlightNN, document has full \colortbl (produced in MS Word 2003 or 2007) - - // test \highlight11 = dark magenta - uno::Reference<beans::XPropertySet> xRun(getRun(getParagraph(11),1), uno::UNO_QUERY); - CPPUNIT_ASSERT_EQUAL(sal_uInt32(0x800080), getProperty<sal_uInt32>(xRun, "CharBackColor")); -} - DECLARE_RTFEXPORT_TEST(testFdo80167, "fdo80167.rtf") { // Problem was that after export, the page break was missing, so this was 1. |