Changeset 109550 in webkit


Ignore:
Timestamp:
Mar 2, 2012 3:54:28 AM (12 years ago)
Author:
commit-queue@webkit.org
Message:

[Forms] Make order of attribute/method in HTMLButtonElement.idl as same as specification
https://bugs.webkit.org/show_bug.cgi?id=80091

Patch by Yoshifumi Inoue <yosin@chromium.org> on 2012-03-02
Reviewed by Kentaro Hara.

No new tests. No behavior changes.

  • html/HTMLButtonElement.idl: Reorder attribute/method position.
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r109548 r109550  
     12012-03-02  Yoshifumi Inoue  <yosin@chromium.org>
     2
     3        [Forms] Make order of attribute/method in HTMLButtonElement.idl as same as specification
     4        https://bugs.webkit.org/show_bug.cgi?id=80091
     5
     6        Reviewed by Kentaro Hara.
     7
     8        No new tests. No behavior changes.
     9
     10        * html/HTMLButtonElement.idl: Reorder attribute/method position.
     11
    1122012-03-02  Allan Sandfeld Jensen  <allan.jensen@nokia.com>
    213
  • trunk/Source/WebCore/html/HTMLButtonElement.idl

    r107483 r109550  
    2222
    2323    interface HTMLButtonElement : HTMLElement {
     24        attribute [Reflect] boolean autofocus;
     25        attribute [Reflect] boolean disabled;
    2426        readonly attribute HTMLFormElement form;
    25 
    2627        attribute [Reflect, URL] DOMString formAction;
    2728        attribute [TreatNullAs=NullString] DOMString formEnctype;
     
    2930        attribute [Reflect] boolean formNoValidate;
    3031        attribute [Reflect] DOMString formTarget;
    31         readonly attribute ValidityState validity;
    32 
    33 #if defined(LANGUAGE_OBJECTIVE_C) && LANGUAGE_OBJECTIVE_C
    34         attribute [Reflect] DOMString accessKey;
    35 #endif
    36         attribute [Reflect] boolean disabled;
    37         attribute [Reflect] boolean autofocus;
    3832        attribute [Reflect] DOMString name;
    3933        readonly attribute DOMString type;
     
    4135
    4236        readonly attribute boolean willValidate;
     37        readonly attribute ValidityState validity;
    4338        readonly attribute DOMString validationMessage;
    4439        boolean checkValidity();
    4540        void setCustomValidity(in [TreatNullAs=NullString, TreatUndefinedAs=NullString] DOMString error);
    4641
     42        readonly attribute NodeList labels;
     43
     44#if defined(LANGUAGE_OBJECTIVE_C) && LANGUAGE_OBJECTIVE_C
     45        attribute [Reflect] DOMString accessKey;
     46#endif
     47
    4748#if defined(LANGUAGE_OBJECTIVE_C) && LANGUAGE_OBJECTIVE_C
    4849        void click();
    4950#endif
    50 
    51         readonly attribute NodeList labels;
    5251    };
    53 
    5452}
Note: See TracChangeset for help on using the changeset viewer.