Changeset 98385 in webkit
- Timestamp:
- Oct 25, 2011, 1:36:54 PM (15 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 5 edited
-
ChangeLog (modified) (1 diff)
-
dom/DataTransferItems.idl (modified) (1 diff)
-
page/History.idl (modified) (1 diff)
-
storage/IDBIndex.idl (modified) (1 diff)
-
xml/XMLHttpRequest.idl (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r98380 r98385 1 2011-10-25 Pavel Podivilov <podivilov@chromium.org> 2 3 Fix several minor problems in idls. 4 https://bugs.webkit.org/show_bug.cgi?id=70811 5 6 Reviewed by Adam Barth. 7 8 This patch does not have any effect on generated bindings. 9 10 * dom/DataTransferItems.idl: 11 * page/History.idl: 12 * storage/IDBIndex.idl: 13 * xml/XMLHttpRequest.idl: 14 1 15 2011-10-25 Nate Chapin <japhet@chromium.org> 2 16 -
trunk/Source/WebCore/dom/DataTransferItems.idl
r92433 r98385 39 39 ] DataTransferItems { 40 40 readonly attribute long length; 41 DataTransferItem item(in [Optional=CallWithDefaultValue] unsigned long index) getter;41 DataTransferItem item(in [Optional=CallWithDefaultValue] unsigned long index); 42 42 43 43 void clear(); -
trunk/Source/WebCore/page/History.idl
r92247 r98385 43 43 [DoNotCheckDomainSecurity, CallWith=ScriptExecutionContext] void go(in [Optional=CallWithDefaultValue] long distance); 44 44 45 [Custom, EnabledAtRuntime] void pushState(in any data, in DOMString title, in optionalDOMString url)45 [Custom, EnabledAtRuntime] void pushState(in any data, in DOMString title, in [Optional] DOMString url) 46 46 raises(DOMException); 47 [Custom, EnabledAtRuntime] void replaceState(in any data, in DOMString title, in optionalDOMString url)47 [Custom, EnabledAtRuntime] void replaceState(in any data, in DOMString title, in [Optional] DOMString url) 48 48 raises(DOMException); 49 49 }; -
trunk/Source/WebCore/storage/IDBIndex.idl
r89377 r98385 36 36 [CallWith=ScriptExecutionContext] IDBRequest openCursor(in [Optional] IDBKeyRange range, in [Optional] unsigned short direction) 37 37 raises (IDBDatabaseException); 38 [CallWith=ScriptExecutionContext] IDBRequest openKeyCursor(in [Optional] IDBKeyRange range, in [Optional] unsigned short direction) )38 [CallWith=ScriptExecutionContext] IDBRequest openKeyCursor(in [Optional] IDBKeyRange range, in [Optional] unsigned short direction) 39 39 raises (IDBDatabaseException); 40 40 [CallWith=ScriptExecutionContext] IDBRequest get(in IDBKey key) -
trunk/Source/WebCore/xml/XMLHttpRequest.idl
r97581 r98385 65 65 attribute boolean withCredentials 66 66 setter raises(DOMException); 67 // void open(in DOMString method, in DOMString url); 68 // void open(in DOMString method, in DOMString url, in boolean async); 69 // void open(in DOMString method, in DOMString url, in boolean async, in DOMString user); 70 [Custom] void open(in DOMString method, in DOMString url, in boolean async, in DOMString user, in DOMString password) 67 68 [Custom] void open(in DOMString method, in DOMString url, in [Optional] boolean async, in [Optional] DOMString user, in [Optional] DOMString password) 71 69 raises(DOMException); 72 70
Note:
See TracChangeset
for help on using the changeset viewer.