Title: [86946] trunk/Source/WebKit/qt
Revision
86946
Author
o...@webkit.org
Date
2011-05-20 06:32:03 -0700 (Fri, 20 May 2011)

Log Message

2011-05-20  Csaba Osztrogonác  <o...@webkit.org>

        Reviewed by Benjamin Poulain.

        [Qt]Fix tst_QWebFrame::setUrlToInvalid() autotest after r84762
        https://bugs.webkit.org/show_bug.cgi?id=59345

        * tests/qwebframe/tst_qwebframe.cpp:
        (tst_QWebFrame::setUrlToInvalid): Mark failing test cases as expected fails.

Modified Paths

Diff

Modified: trunk/Source/WebKit/qt/ChangeLog (86945 => 86946)


--- trunk/Source/WebKit/qt/ChangeLog	2011-05-20 13:24:29 UTC (rev 86945)
+++ trunk/Source/WebKit/qt/ChangeLog	2011-05-20 13:32:03 UTC (rev 86946)
@@ -1,3 +1,13 @@
+2011-05-20  Csaba Osztrogonác  <o...@webkit.org>
+
+        Reviewed by Benjamin Poulain.
+
+        [Qt]Fix tst_QWebFrame::setUrlToInvalid() autotest after r84762
+        https://bugs.webkit.org/show_bug.cgi?id=59345
+
+        * tests/qwebframe/tst_qwebframe.cpp:
+        (tst_QWebFrame::setUrlToInvalid): Mark failing test cases as expected fails.
+
 2011-05-19  Zsolt Fehér  <h490...@stud.u-szeged.hu>
 
         Reviewed by Csaba Osztrogonác.

Modified: trunk/Source/WebKit/qt/tests/qwebframe/tst_qwebframe.cpp (86945 => 86946)


--- trunk/Source/WebKit/qt/tests/qwebframe/tst_qwebframe.cpp	2011-05-20 13:24:29 UTC (rev 86945)
+++ trunk/Source/WebKit/qt/tests/qwebframe/tst_qwebframe.cpp	2011-05-20 13:32:03 UTC (rev 86946)
@@ -3459,8 +3459,11 @@
     QVERIFY(invalidUrl != QUrl());
 
     frame->setUrl(invalidUrl);
+    QEXPECT_FAIL("", "https://bugs.webkit.org/show_bug.cgi?id=59345", Continue);
     QCOMPARE(frame->url(), invalidUrl);
+    QEXPECT_FAIL("", "https://bugs.webkit.org/show_bug.cgi?id=59345", Continue);
     QCOMPARE(frame->requestedUrl(), invalidUrl);
+    QEXPECT_FAIL("", "https://bugs.webkit.org/show_bug.cgi?id=59345", Continue);
     QCOMPARE(frame->baseUrl(), invalidUrl);
 
     // QUrls equivalent to QUrl() will be treated as such.
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to