Changeset 109565 in webkit


Ignore:
Timestamp:
Mar 2, 2012 5:31:39 AM (12 years ago)
Author:
commit-queue@webkit.org
Message:

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

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

No new tests. No behavior changes.

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

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r109564 r109565  
     12012-03-02  Yoshifumi Inoue  <yosin@chromium.org>
     2
     3        [Forms] Make order of attribute/method in HTMLTextAreaElement.idl as same as specification
     4        https://bugs.webkit.org/show_bug.cgi?id=80101
     5
     6        Reviewed by Kent Tamura.
     7
     8        No new tests. No behavior changes.
     9
     10        * html/HTMLTextAreaElement.idl: Reorder attribute/method position.
     11
    1122012-03-02  Patrick Gansterer  <paroga@webkit.org>
    213
  • trunk/Source/WebCore/html/HTMLTextAreaElement.idl

    r107459 r109565  
    2323
    2424    interface HTMLTextAreaElement : HTMLElement {
    25         attribute [TreatNullAs=NullString] DOMString defaultValue;
    26         readonly attribute HTMLFormElement form;
    27         readonly attribute ValidityState validity;
     25        attribute [Reflect] boolean autofocus;
    2826        attribute long cols;
    2927        attribute [Reflect] DOMString dirName;
    3028        attribute [Reflect] boolean disabled;
    31         attribute [Reflect] boolean autofocus;
     29        readonly attribute HTMLFormElement form;
    3230        attribute long maxLength setter raises(DOMException);
    3331        attribute [TreatNullAs=NullString] DOMString name;
     
    3735        attribute long rows;
    3836        attribute [Reflect] DOMString wrap;
     37
    3938        readonly attribute DOMString type;
     39        attribute [TreatNullAs=NullString] DOMString defaultValue;
    4040        attribute [TreatNullAs=NullString] DOMString value;
    4141        readonly attribute unsigned long textLength;
    4242
    43 #if defined(LANGUAGE_OBJECTIVE_C) && LANGUAGE_OBJECTIVE_C
    44         attribute [Reflect] DOMString accessKey;
    45 #endif
    46         void select();
    47 
    4843        readonly attribute boolean willValidate;
     44        readonly attribute ValidityState validity;
    4945        readonly attribute DOMString validationMessage;
    5046        boolean checkValidity();
    5147        void setCustomValidity(in [TreatNullAs=NullString, TreatUndefinedAs=NullString] DOMString error);
    5248
    53         // WinIE & FireFox extension:
     49        readonly attribute NodeList labels;
     50
     51        void select();
    5452        attribute long selectionStart;
    5553        attribute long selectionEnd;
     
    5856        void setSelectionRange(in long start, in long end);
    5957#else
    60         void setSelectionRange(in [Optional=DefaultIsUndefined] long start, 
    61                                in [Optional=DefaultIsUndefined] long end, 
     58        void setSelectionRange(in [Optional=DefaultIsUndefined] long start,
     59                               in [Optional=DefaultIsUndefined] long end,
    6260                               in [Optional] DOMString direction);
    6361#endif
    64         readonly attribute NodeList labels;
     62
     63#if defined(LANGUAGE_OBJECTIVE_C) && LANGUAGE_OBJECTIVE_C
     64        attribute [Reflect] DOMString accessKey;
     65#endif
    6566    };
    66 
    6767}
Note: See TracChangeset for help on using the changeset viewer.