Changeset 134538 in webkit
- Timestamp:
- Nov 13, 2012, 9:35:11 PM (13 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r134537 r134538 1 2012-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 1 15 2012-11-13 KyungTae Kim <ktf.kim@samsung.com> 2 16 -
trunk/Source/WebCore/html/HTMLInputElement.idl
r132599 r134538 57 57 [TreatNullAs=NullString] attribute DOMString type; // readonly dropped as part of DOM level 2 58 58 [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 59 61 [TreatNullAs=NullString] attribute DOMString value setter raises(DOMException); 62 #else 63 [TreatNullAs=NullString] attribute DOMString value; 64 #endif 60 65 #if !defined(LANGUAGE_CPP) || !LANGUAGE_CPP 61 66 attribute Date valueAsDate setter raises(DOMException);
Note:
See TracChangeset
for help on using the changeset viewer.