Changeset 79820 in webkit


Ignore:
Timestamp:
Feb 27, 2011 9:59:33 AM (13 years ago)
Author:
Patrick Gansterer
Message:

2011-02-27 Patrick Gansterer <Patrick Gansterer>

Reviewed by Andreas Kling.

[Qt] fast/loader/user-stylesheet-fast-path.html fails
https://bugs.webkit.org/show_bug.cgi?id=50911

  • platform/qt/Skipped: Unskip test which is now passing.

2011-02-27 Patrick Gansterer <Patrick Gansterer>

Reviewed by Andreas Kling.

[Qt] fast/loader/user-stylesheet-fast-path.html fails
https://bugs.webkit.org/show_bug.cgi?id=50911

  • DumpRenderTree/qt/LayoutTestControllerQt.cpp: (LayoutTestController::setUserStyleSheetLocation): Use QUrl::fromEncoded since the passed string is already encoded.
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r79811 r79820  
     12011-02-27  Patrick Gansterer  <paroga@webkit.org>
     2
     3        Reviewed by Andreas Kling.
     4
     5        [Qt] fast/loader/user-stylesheet-fast-path.html fails
     6        https://bugs.webkit.org/show_bug.cgi?id=50911
     7
     8        * platform/qt/Skipped:  Unskip test which is now passing.
     9
    1102011-02-26  Abhishek Arya  <inferno@chromium.org>
    211
  • trunk/LayoutTests/platform/qt/Skipped

    r79811 r79820  
    35183518editing/selection/modify-up-on-rtl-wrapping-text.html
    35193519
    3520 # [Qt] fast/loader/user-stylesheet-fast-path.html fails
    3521 # https://bugs.webkit.org/show_bug.cgi?id=50911
    3522 fast/loader/user-stylesheet-fast-path.html
    3523 
    35243520# For https://bugs.webkit.org/show_bug.cgi?id=50758
    35253521# These require DRT setSerializeHTTPLoads implementation to be reliable.
  • trunk/Tools/ChangeLog

    r79819 r79820  
     12011-02-27  Patrick Gansterer  <paroga@webkit.org>
     2
     3        Reviewed by Andreas Kling.
     4
     5        [Qt] fast/loader/user-stylesheet-fast-path.html fails
     6        https://bugs.webkit.org/show_bug.cgi?id=50911
     7
     8        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
     9        (LayoutTestController::setUserStyleSheetLocation):
     10        Use QUrl::fromEncoded since the passed string is already encoded.
     11
    1122011-02-27  Adam Roben  <aroben@apple.com>
    213
  • trunk/Tools/DumpRenderTree/qt/LayoutTestControllerQt.cpp

    r79783 r79820  
    621621void LayoutTestController::setUserStyleSheetLocation(const QString& url)
    622622{
    623     m_userStyleSheetLocation = QUrl(url);
     623    m_userStyleSheetLocation = QUrl::fromEncoded(url.toAscii(), QUrl::StrictMode);
    624624
    625625    if (m_userStyleSheetEnabled)
Note: See TracChangeset for help on using the changeset viewer.