Changeset 109557 in webkit


Ignore:
Timestamp:
Mar 2, 2012 4:47:58 AM (12 years ago)
Author:
commit-queue@webkit.org
Message:

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

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

No new tests. No behavior changes.

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

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r109556 r109557  
     12012-03-02  Yoshifumi Inoue  <yosin@chromium.org>
     2
     3        [Forms] Make order of attribute/method in HTMLOptionElement.idl as same as specification
     4        https://bugs.webkit.org/show_bug.cgi?id=80095
     5
     6        Reviewed by Kentaro Hara.
     7
     8        No new tests. No behavior changes.
     9
     10        * html/HTMLOptionElement.idl: Reorder attribute/method position.
     11
    1122012-03-02  Adam Barth  <abarth@webkit.org>
    213
  • trunk/Source/WebCore/html/HTMLOptionElement.idl

    r107304 r109557  
    2626        ConstructorRaisesException
    2727    ] HTMLOptionElement : HTMLElement {
     28        attribute [Reflect] boolean disabled;
    2829        readonly attribute HTMLFormElement form;
     30        attribute DOMString label;
    2931        attribute [Reflect=selected] boolean defaultSelected;
     32        attribute boolean selected;
     33        attribute DOMString value;
     34
    3035#if defined(LANGUAGE_JAVASCRIPT) && LANGUAGE_JAVASCRIPT
    3136        attribute DOMString text setter raises(DOMException);
     
    3439#endif
    3540        readonly attribute long index;
    36         attribute [Reflect] boolean disabled;
    37         attribute DOMString label;
    38         attribute boolean selected;
    39         attribute DOMString value;
    4041    };
    41 
    4242}
Note: See TracChangeset for help on using the changeset viewer.