Changeset 109836 in webkit


Ignore:
Timestamp:
Mar 5, 2012 7:07:53 PM (12 years ago)
Author:
commit-queue@webkit.org
Message:

Source/WebCore: [Forms] HTMLFieldSetForms.idl doesn't have name attribute.
https://bugs.webkit.org/show_bug.cgi?id=80108

Patch by Yoshifumi Inoue <yosin@chromium.org> on 2012-03-05
Reviewed by Hajime Morita.

Test: fast/forms/fieldset/fieldset-name.html

  • html/HTMLFieldSetElement.idl: Add "name" attribute.

LayoutTests: [Forms] HTMLFieldSetForms.idl doesn't have name attribute.
https://bugs.webkit.org/show_bug.cgi?id=81008

Test read/write attribute "name" of fieldset element.

Patch by Yoshifumi Inoue <yosin@chromium.org> on 2012-03-05
Reviewed by Hajime Morita.

  • fast/forms/fieldset/fieldset-name-expected.txt: Added.
  • fast/forms/fieldset/fieldset-name.html: Added.
Location:
trunk
Files:
3 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r109830 r109836  
     12012-03-05  Yoshifumi Inoue  <yosin@chromium.org>
     2
     3        [Forms] HTMLFieldSetForms.idl doesn't have name attribute.
     4        https://bugs.webkit.org/show_bug.cgi?id=81008
     5
     6        Test read/write attribute "name" of fieldset element.
     7
     8        Reviewed by Hajime Morita.
     9
     10        * fast/forms/fieldset/fieldset-name-expected.txt: Added.
     11        * fast/forms/fieldset/fieldset-name.html: Added.
     12
    1132012-03-05  Tony Chang  <tony@chromium.org>
    214
  • trunk/Source/WebCore/ChangeLog

    r109835 r109836  
     12012-03-05  Yoshifumi Inoue  <yosin@chromium.org>
     2
     3        [Forms] HTMLFieldSetForms.idl doesn't have name attribute.
     4        https://bugs.webkit.org/show_bug.cgi?id=80108
     5
     6        Reviewed by Hajime Morita.
     7
     8        Test: fast/forms/fieldset/fieldset-name.html
     9
     10        * html/HTMLFieldSetElement.idl: Add "name" attribute.
     11
    1122012-03-05  Levi Weintraub  <leviw@chromium.org>
    213
  • trunk/Source/WebCore/html/HTMLFieldSetElement.idl

    r109547 r109836  
    2222    interface HTMLFieldSetElement : HTMLElement {
    2323        readonly attribute HTMLFormElement form;
     24        attribute [Reflect] DOMString name;
    2425        readonly attribute boolean         willValidate;
    2526        readonly attribute ValidityState   validity;
Note: See TracChangeset for help on using the changeset viewer.