Title: [92182] trunk/Source/WebKit/qt
- Revision
- 92182
- Author
- [email protected]
- Date
- 2011-08-02 05:38:12 -0700 (Tue, 02 Aug 2011)
Log Message
[Qt] Fix tst_QWebPage::viewModes() API test
https://bugs.webkit.org/show_bug.cgi?id=65531
Patch by Kristóf Kosztyó <[email protected]> on 2011-08-02
Reviewed by Csaba Osztrogonác.
* tests/qwebpage/tst_qwebpage.cpp: Mark failing test case as expected fail
(tst_QWebPage::viewModes):
Modified Paths
Diff
Modified: trunk/Source/WebKit/qt/ChangeLog (92181 => 92182)
--- trunk/Source/WebKit/qt/ChangeLog 2011-08-02 12:34:36 UTC (rev 92181)
+++ trunk/Source/WebKit/qt/ChangeLog 2011-08-02 12:38:12 UTC (rev 92182)
@@ -1,5 +1,15 @@
2011-08-02 Kristóf Kosztyó <[email protected]>
+ [Qt] Fix tst_QWebPage::viewModes() API test
+ https://bugs.webkit.org/show_bug.cgi?id=65531
+
+ Reviewed by Csaba Osztrogonác.
+
+ * tests/qwebpage/tst_qwebpage.cpp: Mark failing test case as expected fail
+ (tst_QWebPage::viewModes):
+
+2011-08-02 Kristóf Kosztyó <[email protected]>
+
[Qt] Fix tst_QWebFrame::connectAndDisconnect() API test
https://bugs.webkit.org/show_bug.cgi?id=65170
Modified: trunk/Source/WebKit/qt/tests/qwebpage/tst_qwebpage.cpp (92181 => 92182)
--- trunk/Source/WebKit/qt/tests/qwebpage/tst_qwebpage.cpp 2011-08-02 12:34:36 UTC (rev 92181)
+++ trunk/Source/WebKit/qt/tests/qwebpage/tst_qwebpage.cpp 2011-08-02 12:38:12 UTC (rev 92182)
@@ -493,12 +493,15 @@
m_page->setProperty("_q_viewMode", "minimized");
QVariant empty = m_page->mainFrame()->evaluateJavaScript("window.styleMedia.matchMedium(\"(-webkit-view-mode)\")");
+ QEXPECT_FAIL("", "https://bugs.webkit.org/show_bug.cgi?id=65531", Continue);
QVERIFY(empty.type() == QVariant::Bool && empty.toBool());
QVariant minimized = m_page->mainFrame()->evaluateJavaScript("window.styleMedia.matchMedium(\"(-webkit-view-mode: minimized)\")");
+ QEXPECT_FAIL("", "https://bugs.webkit.org/show_bug.cgi?id=65531", Continue);
QVERIFY(minimized.type() == QVariant::Bool && minimized.toBool());
QVariant maximized = m_page->mainFrame()->evaluateJavaScript("window.styleMedia.matchMedium(\"(-webkit-view-mode: maximized)\")");
+ QEXPECT_FAIL("", "https://bugs.webkit.org/show_bug.cgi?id=65531", Continue);
QVERIFY(maximized.type() == QVariant::Bool && !maximized.toBool());
}
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes