Changeset 88838 in webkit


Ignore:
Timestamp:
Jun 14, 2011 11:44:25 AM (13 years ago)
Author:
qi.2.zhang@nokia.com
Message:

2011-06-14 Qi Zhang <qi.2.zhang@nokia.com>

Reviewed by Laszlo Gombos.

[Qt] fast/dom/HTMLScriptElement/nested-execution.html failed
https://bugs.webkit.org/show_bug.cgi?id=62227

  • platform/qt/Skipped:

2011-06-14 Qi Zhang <qi.2.zhang@nokia.com>

Reviewed by Laszlo Gombos.

[Qt] fast/dom/HTMLScriptElement/nested-execution.html failed
https://bugs.webkit.org/show_bug.cgi?id=62227

QtWebkit does not yet support different CacheModels. This change will
expose setCacheModel() with a stub implementation, which is enough to pass the LayoutTest.

  • DumpRenderTree/qt/LayoutTestControllerQt.cpp: (LayoutTestController::setCacheModel):
  • DumpRenderTree/qt/LayoutTestControllerQt.h:
Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r88830 r88838  
     12011-06-14  Qi Zhang  <qi.2.zhang@nokia.com>
     2
     3        Reviewed by Laszlo Gombos.
     4
     5        [Qt] fast/dom/HTMLScriptElement/nested-execution.html failed
     6        https://bugs.webkit.org/show_bug.cgi?id=62227
     7
     8        * platform/qt/Skipped:
     9
    1102011-06-14  Chris Fleizach  <cfleizach@apple.com>
    211
  • trunk/LayoutTests/platform/qt/Skipped

    r88806 r88838  
    13811381fast/dom/Range/getClientRects.html
    13821382fast/dom/tabindex-clamp.html
    1383 fast/dom/HTMLScriptElement/nested-execution.html
    13841383fast/dom/Window/webkitConvertPoint.html
    13851384fast/encoding/char-encoding-mac.html
  • trunk/Tools/ChangeLog

    r88796 r88838  
     12011-06-14  Qi Zhang  <qi.2.zhang@nokia.com>
     2
     3        Reviewed by Laszlo Gombos.
     4
     5        [Qt] fast/dom/HTMLScriptElement/nested-execution.html failed
     6        https://bugs.webkit.org/show_bug.cgi?id=62227
     7
     8        QtWebkit does not yet support different CacheModels. This change will
     9        expose setCacheModel() with a stub implementation, which is enough to pass the LayoutTest.
     10
     11        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
     12        (LayoutTestController::setCacheModel):
     13        * DumpRenderTree/qt/LayoutTestControllerQt.h:
     14
    1152011-06-14  Caio Marcelo de Oliveira Filho  <caio.oliveira@openbossa.org>
    216
  • trunk/Tools/DumpRenderTree/qt/LayoutTestControllerQt.cpp

    r88796 r88838  
    600600}
    601601
     602void LayoutTestController::setCacheModel(int model)
     603{
     604    // qwebsetting doesn't have matched setting yet :
     605    // WEBKIT_CACHE_MODEL_DOCUMENT_VIEWER
     606    // WEBKIT_CACHE_MODEL_DOCUMENT_BROWSER
     607    // WEBKIT_CACHE_MODEL_WEB_BROWSER
     608
     609    // FIXME: Implement.
     610}
     611
    602612void LayoutTestController::setDatabaseQuota(int size)
    603613{
  • trunk/Tools/DumpRenderTree/qt/LayoutTestControllerQt.h

    r88796 r88838  
    198198    QStringList originsWithApplicationCache();
    199199    long long applicationCacheDiskUsageForOrigin(const QString&);
     200    void setCacheModel(int);
    200201
    201202    void setDatabaseQuota(int size);
Note: See TracChangeset for help on using the changeset viewer.