Changeset 96096 in webkit


Ignore:
Timestamp:
Sep 27, 2011 4:20:34 AM (13 years ago)
Author:
commit-queue@webkit.org
Message:

wrap attribute of textarea element cannot be accessed by JavaScript.
https://bugs.webkit.org/show_bug.cgi?id=68592

Patch by Vineet Chaudhary <vineet.chaudhary@motorola.com> on 2011-09-27
Reviewed by Kent Tamura.

Source/WebCore:

Added JS interface for wrap attribute to HTMLTextAreaElement.idl.

Test: fast/forms/textarea-wrap-attribute.html

  • html/HTMLTextAreaElement.idl:

LayoutTests:

Added test cases to check accessibility to wrap attribute by JS.

  • fast/forms/textarea-wrap-attribute-expected.txt: Added.
  • fast/forms/textarea-wrap-attribute.html: Added.
Location:
trunk
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r96091 r96096  
     12011-09-27  Vineet Chaudhary  <vineet.chaudhary@motorola.com>
     2
     3        wrap attribute of textarea element cannot be accessed by JavaScript.
     4        https://bugs.webkit.org/show_bug.cgi?id=68592
     5
     6        Reviewed by Kent Tamura.
     7
     8        Added test cases to check accessibility to wrap attribute by JS.
     9
     10        * fast/forms/textarea-wrap-attribute-expected.txt: Added.
     11        * fast/forms/textarea-wrap-attribute.html: Added.
     12
    1132011-09-27  Shinichiro Hamaji  <hamaji@chromium.org>
    214
  • trunk/Source/WebCore/ChangeLog

    r96093 r96096  
     12011-09-27  Vineet Chaudhary  <vineet.chaudhary@motorola.com>
     2
     3        wrap attribute of textarea element cannot be accessed by JavaScript.
     4        https://bugs.webkit.org/show_bug.cgi?id=68592
     5
     6        Reviewed by Kent Tamura.
     7
     8        Added JS interface for wrap attribute to HTMLTextAreaElement.idl.
     9
     10        Test: fast/forms/textarea-wrap-attribute.html
     11
     12        * html/HTMLTextAreaElement.idl:
     13
    1142011-09-27  Xan Lopez  <xlopez@igalia.com>
    215
  • trunk/Source/WebCore/html/HTMLTextAreaElement.idl

    r92327 r96096  
    22 * Copyright (C) 2006, 2010 Apple Inc. All rights reserved.
    33 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com>
     4 * Copyright (C) 2011 Motorola Mobility, Inc. All rights reserved.
    45 *
    56 * This library is free software; you can redistribute it and/or
     
    3536        attribute [Reflect] boolean required;
    3637        attribute long rows;
     38        attribute [Reflect] DOMString wrap;
    3739        readonly attribute DOMString type;
    3840        attribute [ConvertNullToNullString] DOMString value;
Note: See TracChangeset for help on using the changeset viewer.