Changeset 69925 in webkit


Ignore:
Timestamp:
Oct 17, 2010 11:19:05 AM (13 years ago)
Author:
commit-queue@webkit.org
Message:

2010-10-17 Viatcheslav Ostapenko <ostapenko.viatcheslav@nokia.com>

Reviewed by Antonio Gomes.

[Qt] Layout tests for fix focusing of control elements on mouse click.
https://bugs.webkit.org/show_bug.cgi?id=40641

  • fast/events/click-focus-control-expected.txt: Added.
  • fast/events/click-focus-control.html: Added.
  • platform/mac/fast/events/click-focus-control-expected.txt: Added.
  • platform/win/Skipped:

2010-10-17 Viatcheslav Ostapenko <ostapenko.viatcheslav@nokia.com>

Reviewed by Antonio Gomes.

[Qt] Fix focusing of control elements on mouse click.
Brings GTK fix to Qt platform.
https://bugs.webkit.org/show_bug.cgi?id=40641

Test: fast/events/click-focus-control.html

  • html/HTMLFormControlElement.cpp: (WebCore::HTMLFormControlElement::isMouseFocusable):
Location:
trunk
Files:
3 added
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r69922 r69925  
     12010-10-17  Viatcheslav Ostapenko  <ostapenko.viatcheslav@nokia.com>
     2
     3        Reviewed by Antonio Gomes.
     4
     5        [Qt] Layout tests for fix focusing of control elements on mouse click.
     6        https://bugs.webkit.org/show_bug.cgi?id=40641
     7               
     8        * fast/events/click-focus-control-expected.txt: Added.
     9        * fast/events/click-focus-control.html: Added.
     10        * platform/mac/fast/events/click-focus-control-expected.txt: Added.
     11        * platform/win/Skipped:
     12
    1132010-10-17  Rob Buis  <rwlbuis@gmail.com>
    214
  • trunk/LayoutTests/platform/win/Skipped

    r69750 r69925  
    10371037# The WebKit plugin implementation does not support iframe shims.
    10381038plugins/iframe-shims.html
     1039
     1040# https://bugs.webkit.org/show_bug.cgi?id=22261
     1041fast/events/click-focus-control.html
  • trunk/WebCore/ChangeLog

    r69924 r69925  
     12010-10-17  Viatcheslav Ostapenko  <ostapenko.viatcheslav@nokia.com>
     2
     3        Reviewed by Antonio Gomes.
     4
     5        [Qt] Fix focusing of control elements on mouse click.
     6        Brings GTK fix to Qt platform.
     7        https://bugs.webkit.org/show_bug.cgi?id=40641
     8                       
     9        Test: fast/events/click-focus-control.html
     10
     11        * html/HTMLFormControlElement.cpp:
     12        (WebCore::HTMLFormControlElement::isMouseFocusable):
     13
    1142010-10-17  Adam Barth  <abarth@webkit.org>
    215
  • trunk/WebCore/html/HTMLFormControlElement.cpp

    r69831 r69925  
    256256bool HTMLFormControlElement::isMouseFocusable() const
    257257{
    258 #if PLATFORM(GTK)
     258#if PLATFORM(GTK) || PLATFORM(QT)
    259259    return HTMLElement::isMouseFocusable();
    260260#else
Note: See TracChangeset for help on using the changeset viewer.