Changeset 53635 in webkit


Ignore:
Timestamp:
Jan 21, 2010 11:38:38 AM (14 years ago)
Author:
eric@webkit.org
Message:

2010-01-21 Diego Gonzalez <diego.gonzalez@openbossa.org>

Reviewed by Kenneth Rohde Christiansen.

[Qt] add setDomainRelaxationForbiddenForURLScheme in Qt DRT
https://bugs.webkit.org/show_bug.cgi?id=33945

  • platform/qt/Skipped:

2010-01-21 Diego Gonzalez <diego.gonzalez@openbossa.org>

Reviewed by Kenneth Rohde Christiansen.

[Qt] add setDomainRelaxationForbiddenForURLScheme in Qt DRT
https://bugs.webkit.org/show_bug.cgi?id=33945

  • Api/qwebsecurityorigin.cpp: (qt_drt_setDomainRelaxationForbiddenForURLScheme):

2010-01-21 Diego Gonzalez <diego.gonzalez@openbossa.org>

Reviewed by Kenneth Rohde Christiansen.

[Qt] add setDomainRelaxationForbiddenForURLScheme in Qt DRT
https://bugs.webkit.org/show_bug.cgi?id=33945

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

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r53631 r53635  
     12010-01-21  Diego Gonzalez  <diego.gonzalez@openbossa.org>
     2
     3        Reviewed by Kenneth Rohde Christiansen.
     4
     5        [Qt] add setDomainRelaxationForbiddenForURLScheme in Qt DRT
     6        https://bugs.webkit.org/show_bug.cgi?id=33945
     7
     8        * platform/qt/Skipped:
     9
    1102010-01-21  Philippe Normand  <pnormand@igalia.com>
    211
  • trunk/LayoutTests/platform/qt/Skipped

    r53616 r53635  
    221221# Missing layoutTestController.setSmartInsertDeleteEnabled()
    222222editing/selection/doubleclick-beside-cr-span.html
    223 
    224 # Missing layoutTestController.setDomainRelaxationForbiddenForURLScheme()
    225 http/tests/security/setDomainRelaxationForbiddenForURLScheme.html
    226223# ============================================================================= #
    227224
  • trunk/WebKit/qt/Api/qwebsecurityorigin.cpp

    r50166 r53635  
    3939{
    4040    SecurityOrigin::resetOriginAccessWhiteLists();
     41}
     42
     43void QWEBKIT_EXPORT qt_drt_setDomainRelaxationForbiddenForURLScheme(bool forbidden, const QString& scheme)
     44{
     45    SecurityOrigin::setDomainRelaxationForbiddenForURLScheme(forbidden, scheme);
    4146}
    4247
  • trunk/WebKit/qt/ChangeLog

    r53618 r53635  
     12010-01-21  Diego Gonzalez  <diego.gonzalez@openbossa.org>
     2
     3        Reviewed by Kenneth Rohde Christiansen.
     4
     5        [Qt] add setDomainRelaxationForbiddenForURLScheme in Qt DRT
     6        https://bugs.webkit.org/show_bug.cgi?id=33945
     7
     8        * Api/qwebsecurityorigin.cpp:
     9        (qt_drt_setDomainRelaxationForbiddenForURLScheme):
     10
    1112010-01-21  No'am Rosenthal  <noam.rosenthal@nokia.com>
    212
  • trunk/WebKitTools/ChangeLog

    r53616 r53635  
     12010-01-21  Diego Gonzalez  <diego.gonzalez@openbossa.org>
     2
     3        Reviewed by Kenneth Rohde Christiansen.
     4
     5        [Qt] add setDomainRelaxationForbiddenForURLScheme in Qt DRT
     6        https://bugs.webkit.org/show_bug.cgi?id=33945
     7
     8        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
     9        (LayoutTestController::setDomainRelaxationForbiddenForURLScheme):
     10        * DumpRenderTree/qt/LayoutTestControllerQt.h:
     11
    1122010-01-21  Simon Hausmann  <simon.hausmann@nokia.com>
    213
  • trunk/WebKitTools/DumpRenderTree/qt/LayoutTestControllerQt.cpp

    r53616 r53635  
    4444extern bool qt_drt_pauseSVGAnimation(QWebFrame*, const QString& animationId, double time, const QString& elementId);
    4545extern int qt_drt_numberOfActiveAnimations(QWebFrame*);
     46extern void qt_drt_setDomainRelaxationForbiddenForURLScheme(bool forbidden, const QString& scheme);
    4647
    4748extern void qt_drt_whiteListAccessFromOrigin(const QString& sourceOrigin, const QString& destinationProtocol, const QString& destinationHost, bool allowDestinationSubdomains);
     
    405406        m_drt->webPage()->settings()->setUserStyleSheetUrl(QUrl());
    406407}
     408
     409void LayoutTestController::setDomainRelaxationForbiddenForURLScheme(bool forbidden, const QString& scheme)
     410{
     411    qt_drt_setDomainRelaxationForbiddenForURLScheme(forbidden, scheme);
     412}
  • trunk/WebKitTools/DumpRenderTree/qt/LayoutTestControllerQt.h

    r53281 r53635  
    136136    void setUserStyleSheetLocation(const QString& url);
    137137    void setUserStyleSheetEnabled(bool enabled);
     138    void setDomainRelaxationForbiddenForURLScheme(bool forbidden, const QString& scheme);
    138139
    139140private slots:
Note: See TracChangeset for help on using the changeset viewer.