Changeset 109547 in webkit


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

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

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

No new tests. No behavior changes.

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

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

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

    r106776 r109547  
    2222    interface HTMLFieldSetElement : HTMLElement {
    2323        readonly attribute HTMLFormElement form;
     24        readonly attribute boolean         willValidate;
    2425        readonly attribute ValidityState   validity;
    25         readonly attribute boolean         willValidate;
    2626        readonly attribute DOMString       validationMessage;
    2727        boolean  checkValidity();
    2828        void     setCustomValidity(in [TreatNullAs=NullString, TreatUndefinedAs=NullString] DOMString error);
    2929    };
    30 
    3130}
Note: See TracChangeset for help on using the changeset viewer.