Title: [92179] trunk/Source/WebKit/qt
- Revision
- 92179
- Author
- [email protected]
- Date
- 2011-08-02 05:13:07 -0700 (Tue, 02 Aug 2011)
Log Message
[Qt] Fix tst_QWebElement::render() API test
https://bugs.webkit.org/show_bug.cgi?id=65243
Patch by Kristóf Kosztyó <[email protected]> on 2011-08-02
Reviewed by Csaba Osztrogonác.
* tests/qwebelement/tst_qwebelement.cpp: Mark failing test case as expected fail
(tst_QWebElement::render):
Modified Paths
Diff
Modified: trunk/Source/WebKit/qt/ChangeLog (92178 => 92179)
--- trunk/Source/WebKit/qt/ChangeLog 2011-08-02 12:02:10 UTC (rev 92178)
+++ trunk/Source/WebKit/qt/ChangeLog 2011-08-02 12:13:07 UTC (rev 92179)
@@ -1,5 +1,15 @@
2011-08-02 Kristóf Kosztyó <[email protected]>
+ [Qt] Fix tst_QWebElement::render() API test
+ https://bugs.webkit.org/show_bug.cgi?id=65243
+
+ Reviewed by Csaba Osztrogonác.
+
+ * tests/qwebelement/tst_qwebelement.cpp: Mark failing test case as expected fail
+ (tst_QWebElement::render):
+
+2011-08-02 Kristóf Kosztyó <[email protected]>
+
[Qt] tst_QWebElement::style() fails because QWebElement::CascadedStyle doesn't work as expected
https://bugs.webkit.org/show_bug.cgi?id=65244
Modified: trunk/Source/WebKit/qt/tests/qwebelement/tst_qwebelement.cpp (92178 => 92179)
--- trunk/Source/WebKit/qt/tests/qwebelement/tst_qwebelement.cpp 2011-08-02 12:02:10 UTC (rev 92178)
+++ trunk/Source/WebKit/qt/tests/qwebelement/tst_qwebelement.cpp 2011-08-02 12:13:07 UTC (rev 92179)
@@ -989,6 +989,7 @@
imgs[0].render(&painter1);
painter1.end();
+ QEXPECT_FAIL("", "https://bugs.webkit.org/show_bug.cgi?id=65243", Continue);
QVERIFY(image1 == testImage);
// render image 2nd time to make sure that cached rendering works fine
@@ -998,6 +999,7 @@
imgs[0].render(&painter2);
painter2.end();
+ QEXPECT_FAIL("", "https://bugs.webkit.org/show_bug.cgi?id=65243", Continue);
QVERIFY(image2 == testImage);
// compare table rendered through QWebElement::render to whole page table rendering
@@ -1034,6 +1036,9 @@
#endif
painter.end();
+ // The first chunk in this test is passing, but the others are failing
+ if (x > 0)
+ QEXPECT_FAIL("", "https://bugs.webkit.org/show_bug.cgi?id=65243", Continue);
QVERIFY(chunk == image4.copy(chunkPaintRect));
}
}
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes