Changeset 48965 in webkit


Ignore:
Timestamp:
Oct 1, 2009 3:35:53 AM (15 years ago)
Author:
eric@webkit.org
Message:

2009-10-01 Jakub Wieczorek <faw217@gmail.com>

Reviewed by Simon Hausmann.

[Qt] Implement setPopupBlockingEnabled() in the LayoutTestController and remove
fast/events/open-window-from-another-frame.html from the Skipped list.

https://bugs.webkit.org/show_bug.cgi?id=29930

  • platform/qt/Skipped:

2009-10-01 Jakub Wieczorek <faw217@gmail.com>

Reviewed by Simon Hausmann.

[Qt] Implement setPopupBlockingEnabled() in the LayoutTestController and remove
fast/events/open-window-from-another-frame.html from the Skipped list.

https://bugs.webkit.org/show_bug.cgi?id=29930

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

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r48964 r48965  
     12009-10-01  Jakub Wieczorek  <faw217@gmail.com>
     2
     3        Reviewed by Simon Hausmann.
     4
     5        [Qt] Implement setPopupBlockingEnabled() in the LayoutTestController and remove
     6        fast/events/open-window-from-another-frame.html from the Skipped list.
     7
     8        https://bugs.webkit.org/show_bug.cgi?id=29930
     9
     10        * platform/qt/Skipped:
     11
    1122009-10-01  Martin Robinson  <martin.james.robinson@gmail.com>
    213
  • trunk/LayoutTests/platform/qt/Skipped

    r48927 r48965  
    10261026fast/events/onchange-textfield.html
    10271027fast/events/onsearch-enter.html
    1028 fast/events/open-window-from-another-frame.html
    10291028fast/forms/enter-clicks-buttons.html
    10301029fast/forms/input-align-image.html
  • trunk/WebKitTools/ChangeLog

    r48962 r48965  
     12009-10-01  Jakub Wieczorek  <faw217@gmail.com>
     2
     3        Reviewed by Simon Hausmann.
     4
     5        [Qt] Implement setPopupBlockingEnabled() in the LayoutTestController and remove
     6        fast/events/open-window-from-another-frame.html from the Skipped list.
     7
     8        https://bugs.webkit.org/show_bug.cgi?id=29930
     9
     10        * DumpRenderTree/qt/jsobjects.cpp:
     11        (LayoutTestController::setPopupBlockingEnabled):
     12        * DumpRenderTree/qt/jsobjects.h:
     13
    1142009-09-30  Cameron McCormack  <cam@mcc.id.au>
    215
  • trunk/WebKitTools/DumpRenderTree/qt/jsobjects.cpp

    r48864 r48965  
    292292}
    293293
     294void LayoutTestController::setPopupBlockingEnabled(bool enable)
     295{
     296    QWebSettings::globalSettings()->setAttribute(QWebSettings::JavascriptCanOpenWindows, !enable);
     297}
     298
    294299bool LayoutTestController::pauseAnimationAtTimeOnElementWithId(const QString &animationName,
    295300                                                               double time,
  • trunk/WebKitTools/DumpRenderTree/qt/jsobjects.h

    r48864 r48965  
    9595    void setFixedContentsSize(int width, int height);
    9696    void setPrivateBrowsingEnabled(bool enable);
     97    void setPopupBlockingEnabled(bool enable);
    9798
    9899    bool pauseAnimationAtTimeOnElementWithId(const QString &animationName, double time, const QString &elementId);
Note: See TracChangeset for help on using the changeset viewer.