Changeset 56769 in webkit


Ignore:
Timestamp:
Mar 30, 2010 12:08:01 AM (14 years ago)
Author:
eric@webkit.org
Message:

2010-03-29 Gyuyoung Kim <gyuyoung.kim@samsung.com>

Reviewed by Eric Seidel.

There is a build break due to the disabled() when wml feature is
enabled. This break comes from the Bug 35056 - Disabled menu options
are still submitted.(https://bugs.webkit.org/show_bug.cgi?id=35056)
The WMLOptionElement.h needs to define the disabled() as well.
And, there is an additional break due to Bug 36177 - Multiselect Popup

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

  • wml/WMLOptionElement.h: (WebCore::WMLOptionElement::disabled):
  • wml/WMLSelectElement.h: (WebCore::WMLSelectElement::listBoxSelectItem):
Location:
trunk/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r56764 r56769  
     12010-03-29  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
     2
     3        Reviewed by Eric Seidel.
     4
     5        There is a build break due to the disabled() when wml feature is
     6        enabled. This break comes from the Bug 35056 - Disabled menu options
     7        are still submitted.(https://bugs.webkit.org/show_bug.cgi?id=35056)
     8        The WMLOptionElement.h needs to define the disabled() as well.
     9        And, there is an additional break due to Bug 36177 -  Multiselect Popup
     10        - Listbox click simulation. (https://bugs.webkit.org/show_bug.cgi?id=36177)
     11        virtual void listBoxSelectItem() should be added to WMLSelectElement.h as well.
     12
     13        https://bugs.webkit.org/show_bug.cgi?id=36698
     14
     15        * wml/WMLOptionElement.h:
     16        (WebCore::WMLOptionElement::disabled):
     17        * wml/WMLSelectElement.h:
     18        (WebCore::WMLSelectElement::listBoxSelectItem):
     19
    1202010-03-29  Shinichiro Hamaji  <hamaji@chromium.org>
    221
  • trunk/WebCore/wml/WMLOptionElement.h

    r44243 r56769  
    4242    virtual void parseMappedAttribute(MappedAttribute*);
    4343
     44    virtual bool disabled() const { return false; }
     45
    4446    virtual void attach();
    4547    virtual void detach();
  • trunk/WebCore/wml/WMLSelectElement.h

    r47347 r56769  
    8888    bool initialized() const { return m_initialized; }
    8989
     90    virtual void listBoxSelectItem(int listIndex, bool allowMultiplySelections, bool shift, bool fireOnChangeNow = true) { return; }
    9091private:
    9192    virtual void insertedIntoTree(bool);
Note: See TracChangeset for help on using the changeset viewer.