Changeset 134538 in webkit


Ignore:
Timestamp:
Nov 13, 2012, 9:35:11 PM (13 years ago)
Author:
commit-queue@webkit.org
Message:

fast/forms/file/input-file-write-files.html should cover correct setting value
https://bugs.webkit.org/show_bug.cgi?id=100085

Patch by Li Yin <li.yin@intel.com> on 2012-11-13
Reviewed by Kentaro Hara.

Fix the GObject and Objective C bindings comparibility issue. Preserving existing
behavior for those may be important in idl.

No new tests, because fast/forms/file/input-file-value.html has covered it.

  • html/HTMLInputElement.idl:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r134537 r134538  
     12012-11-13  Li Yin  <li.yin@intel.com>
     2
     3        fast/forms/file/input-file-write-files.html should cover correct setting value
     4        https://bugs.webkit.org/show_bug.cgi?id=100085
     5
     6        Reviewed by Kentaro Hara.
     7
     8        Fix the GObject and Objective C bindings comparibility issue. Preserving existing
     9        behavior for those may be important in idl.
     10
     11        No new tests, because fast/forms/file/input-file-value.html has covered it.
     12
     13        * html/HTMLInputElement.idl:
     14
    1152012-11-13  KyungTae Kim  <ktf.kim@samsung.com>
    216
  • trunk/Source/WebCore/html/HTMLInputElement.idl

    r132599 r134538  
    5757    [TreatNullAs=NullString] attribute DOMString type; // readonly dropped as part of DOM level 2
    5858    [TreatNullAs=NullString] attribute DOMString defaultValue;
     59    // See the discussion in https://bugs.webkit.org/show_bug.cgi?id=100085
     60#if defined(LANGUAGE_JAVASCRIPT) && LANGUAGE_JAVASCRIPT
    5961    [TreatNullAs=NullString] attribute DOMString value setter raises(DOMException);
     62#else
     63    [TreatNullAs=NullString] attribute DOMString value;
     64#endif
    6065#if !defined(LANGUAGE_CPP) || !LANGUAGE_CPP
    6166    attribute Date valueAsDate setter raises(DOMException);
Note: See TracChangeset for help on using the changeset viewer.