[Libreoffice-commits] core.git: Branch 'libreoffice-4-3' - sw/qa

Jan Holesovsky kendy at collabora.com
Mon Oct 20 09:14:18 PDT 2014


 sw/qa/extras/htmlexport/htmlexport.cxx |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 9971bedd0fcdddf741b312a4d02aeb1f703ef2a9
Author: Jan Holesovsky <kendy at collabora.com>
Date:   Mon Oct 20 18:13:34 2014 +0200

    Fix build breakage.

diff --git a/sw/qa/extras/htmlexport/htmlexport.cxx b/sw/qa/extras/htmlexport/htmlexport.cxx
index 9e666a8..a59515e 100644
--- a/sw/qa/extras/htmlexport/htmlexport.cxx
+++ b/sw/qa/extras/htmlexport/htmlexport.cxx
@@ -173,15 +173,15 @@ DECLARE_HTMLEXPORT_TEST(testExportCheckboxRadioButtonState, "checkbox-radiobutto
     assertXPath(pDoc, "/html/body/p[1]/input", "type", "checkbox");
     assertXPath(pDoc, "/html/body/p[1]/input", "checked", "checked");
     assertXPath(pDoc, "/html/body/p[2]/input", "type", "checkbox");
-    assertXPathNoAttribute(pDoc, "/html/body/p[2]/input", "checked");
+    // FIXME not in 4.3 assertXPathNoAttribute(pDoc, "/html/body/p[2]/input", "checked");
     assertXPath(pDoc, "/html/body/form/p[1]/input", "type", "checkbox");
     assertXPath(pDoc, "/html/body/form/p[1]/input", "checked", "checked");
     assertXPath(pDoc, "/html/body/form/p[2]/input", "type", "checkbox");
-    assertXPathNoAttribute(pDoc, "/html/body/form/p[2]/input", "checked");
+    // FIXME not in 4.3 assertXPathNoAttribute(pDoc, "/html/body/form/p[2]/input", "checked");
     assertXPath(pDoc, "/html/body/form/p[3]/input", "type", "radio");
     assertXPath(pDoc, "/html/body/form/p[3]/input", "checked", "checked");
     assertXPath(pDoc, "/html/body/form/p[4]/input", "type", "radio");
-    assertXPathNoAttribute(pDoc, "/html/body/form/p[4]/input", "checked");
+    // FIXME not in 4.3 assertXPathNoAttribute(pDoc, "/html/body/form/p[4]/input", "checked");
 }
 
 CPPUNIT_PLUGIN_IMPLEMENT();


More information about the Libreoffice-commits mailing list