Changeset 51316 in webkit


Ignore:
Timestamp:
Nov 23, 2009 1:48:11 PM (14 years ago)
Author:
eric@webkit.org
Message:

2009-11-23 Jakub Wieczorek <faw217@gmail.com>

Reviewed by Kenneth Rohde Christiansen.

[Qt] DRT: dumpBackForwardList() does not work properly with non-file URLs.
https://bugs.webkit.org/show_bug.cgi?id=31775

LayoutTestController::dumpBackForwardList() should work with local URLs
as well as with normal URLs (in http tests for instance).
Currently it does not output the latter properly.

Unskip a bunch of passing http/navigation tests.

  • platform/qt/Skipped:

2009-11-23 Jakub Wieczorek <faw217@gmail.com>

Reviewed by Kenneth Rohde Christiansen.

[Qt] DRT: dumpBackForwardList() does not work properly with non-file URLs.
https://bugs.webkit.org/show_bug.cgi?id=31775

LayoutTestController::dumpBackForwardList() should work with local URLs
as well as with normal URLs (in http tests for instance).
Currently it does not output the latter properly.

Unskip a bunch of passing http/navigation tests.

  • DumpRenderTree/qt/DumpRenderTree.cpp: (WebCore::dumpHistoryItem):
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r51304 r51316  
     12009-11-23  Jakub Wieczorek  <faw217@gmail.com>
     2
     3        Reviewed by Kenneth Rohde Christiansen.
     4
     5        [Qt] DRT: dumpBackForwardList() does not work properly with non-file URLs.
     6        https://bugs.webkit.org/show_bug.cgi?id=31775
     7
     8        LayoutTestController::dumpBackForwardList() should work with local URLs
     9        as well as with normal URLs (in http tests for instance).
     10        Currently it does not output the latter properly.
     11
     12        Unskip a bunch of passing http/navigation tests.
     13
     14        * platform/qt/Skipped:
     15
    1162009-11-22  Chris Fleizach  <cfleizach@apple.com>
    217
  • trunk/LayoutTests/platform/qt/Skipped

    r51298 r51316  
    3636http/tests/incremental
    3737http/tests/media
    38 http/tests/navigation
    3938http/tests/plugins
    4039http/tests/webarchive
     
    6867http/tests/local/drag-over-remote-content.html
    6968http/tests/local/send-dragged-file.html
     69
     70# Failing navigation tests
     71http/tests/navigation/anchor-frames.html
     72http/tests/navigation/anchor-subframeload.html
     73http/tests/navigation/back-to-slow-frame.html
     74http/tests/navigation/changing-frame-hierarchy-in-onload.html
     75http/tests/navigation/error404-basic.html
     76http/tests/navigation/error404-frames.html
     77http/tests/navigation/error404-goback.html
     78http/tests/navigation/error404-subframeload.html
     79http/tests/navigation/javascriptlink-basic.html
     80http/tests/navigation/javascriptlink-frames.html
     81http/tests/navigation/javascriptlink-goback.html
     82http/tests/navigation/javascriptlink-subframeload.html
     83http/tests/navigation/lockedhistory-iframe.html
     84http/tests/navigation/metaredirect-basic.html
     85http/tests/navigation/metaredirect-frames.html
     86http/tests/navigation/metaredirect-goback.html
     87http/tests/navigation/metaredirect-subframeload.html
     88http/tests/navigation/new-window-redirect-history.html
     89http/tests/navigation/no-referrer-reset.html
     90http/tests/navigation/no-referrer-target-blank.html
     91http/tests/navigation/onload-navigation-iframe-2.html
     92http/tests/navigation/onload-navigation-iframe-timeout.html
     93http/tests/navigation/onload-navigation-iframe.html
     94http/tests/navigation/post-basic.html
     95http/tests/navigation/post-frames.html
     96http/tests/navigation/post-goback1.html
     97http/tests/navigation/post-goback2.html
     98http/tests/navigation/postredirect-basic.html
     99http/tests/navigation/postredirect-frames.html
     100http/tests/navigation/postredirect-goback1.html
     101http/tests/navigation/postredirect-goback2.html
     102http/tests/navigation/redirect302-frames.html
     103http/tests/navigation/redirect302-subframeload.html
     104http/tests/navigation/relativeanchor-frames.html
     105http/tests/navigation/reload-subframe-object.html
     106http/tests/navigation/slowmetaredirect-basic.html
     107http/tests/navigation/slowtimerredirect-basic.html
     108http/tests/navigation/success200-frames-loadsame.html
     109http/tests/navigation/success200-frames.html
     110http/tests/navigation/success200-subframeload.html
     111http/tests/navigation/target-frame-from-window.html
     112http/tests/navigation/timerredirect-basic.html
     113http/tests/navigation/timerredirect-frames.html
     114http/tests/navigation/timerredirect-goback.html
     115http/tests/navigation/timerredirect-subframeload.html
    70116
    71117# Failing security tests
  • trunk/WebKitTools/ChangeLog

    r51304 r51316  
     12009-11-23  Jakub Wieczorek  <faw217@gmail.com>
     2
     3        Reviewed by Kenneth Rohde Christiansen.
     4
     5        [Qt] DRT: dumpBackForwardList() does not work properly with non-file URLs.
     6        https://bugs.webkit.org/show_bug.cgi?id=31775
     7
     8        LayoutTestController::dumpBackForwardList() should work with local URLs
     9        as well as with normal URLs (in http tests for instance).
     10        Currently it does not output the latter properly.
     11
     12        Unskip a bunch of passing http/navigation tests.
     13
     14        * DumpRenderTree/qt/DumpRenderTree.cpp:
     15        (WebCore::dumpHistoryItem):
     16
    1172009-11-22  Chris Fleizach  <cfleizach@apple.com>
    218
  • trunk/WebKitTools/DumpRenderTree/qt/DumpRenderTree.cpp

    r51299 r51316  
    510510        result.append(fileTestString);
    511511        result.append(res);
    512 
    513         // FIXME: Wrong, need (private?) API for determining this.
    514         result.append(QLatin1String("  **nav target**"));
    515     }
     512    } else {
     513        result.append(url);
     514    }
     515
     516    // FIXME: Wrong, need (private?) API for determining this.
     517    result.append(QLatin1String("  **nav target**"));
    516518    result.append(QLatin1String("\n"));
    517519
Note: See TracChangeset for help on using the changeset viewer.