| Index: tools/dom/scripts/htmleventgenerator.py
|
| diff --git a/tools/dom/scripts/htmleventgenerator.py b/tools/dom/scripts/htmleventgenerator.py
|
| index 4f38941a7a79796c33d6418f0a0d334046939025..89602e02c9abfb630075d270c909eaad856f1486 100644
|
| --- a/tools/dom/scripts/htmleventgenerator.py
|
| +++ b/tools/dom/scripts/htmleventgenerator.py
|
| @@ -115,13 +115,13 @@ _html_event_types = monitored.Dict('htmleventgenerator._html_event_types', {
|
| '*.webkitfullscreenerror': ('fullscreenError', 'Event'),
|
| 'AbstractWorker.error': ('error', 'ErrorEvent'),
|
| 'AudioContext.complete': ('complete', 'Event'),
|
| - 'DOMApplicationCache.cached': ('cached', 'Event'),
|
| - 'DOMApplicationCache.checking': ('checking', 'Event'),
|
| - 'DOMApplicationCache.downloading': ('downloading', 'Event'),
|
| - 'DOMApplicationCache.noupdate': ('noUpdate', 'Event'),
|
| - 'DOMApplicationCache.obsolete': ('obsolete', 'Event'),
|
| - 'DOMApplicationCache.progress': ('progress', 'ProgressEvent'),
|
| - 'DOMApplicationCache.updateready': ('updateReady', 'Event'),
|
| + 'ApplicationCache.cached': ('cached', 'Event'),
|
| + 'ApplicationCache.checking': ('checking', 'Event'),
|
| + 'ApplicationCache.downloading': ('downloading', 'Event'),
|
| + 'ApplicationCache.noupdate': ('noUpdate', 'Event'),
|
| + 'ApplicationCache.obsolete': ('obsolete', 'Event'),
|
| + 'ApplicationCache.progress': ('progress', 'ProgressEvent'),
|
| + 'ApplicationCache.updateready': ('updateReady', 'Event'),
|
| 'Document.readystatechange': ('readyStateChange', 'Event'),
|
| 'Document.securitypolicyviolation': ('securityPolicyViolation', 'SecurityPolicyViolationEvent'),
|
| 'Document.selectionchange': ('selectionChange', 'Event'),
|
| @@ -215,19 +215,13 @@ _html_event_types = monitored.Dict('htmleventgenerator._html_event_types', {
|
| 'Window.pagehide': ('pageHide', 'Event'),
|
| 'Window.pageshow': ('pageShow', 'Event'),
|
| 'Window.progress': ('progress', 'Event'),
|
| - 'XMLHttpRequest.abort': ('abort', 'ProgressEvent'),
|
| - 'XMLHttpRequest.error': ('error', 'ProgressEvent'),
|
| - 'XMLHttpRequest.load': ('load', 'ProgressEvent'),
|
| - 'XMLHttpRequest.loadend': ('loadEnd', 'ProgressEvent'),
|
| - 'XMLHttpRequest.loadstart': ('loadStart', 'ProgressEvent'),
|
| - 'XMLHttpRequest.progress': ('progress', 'ProgressEvent'),
|
| + 'XMLHttpRequestEventTarget.abort': ('abort', 'ProgressEvent'),
|
| + 'XMLHttpRequestEventTarget.error': ('error', 'ProgressEvent'),
|
| + 'XMLHttpRequestEventTarget.load': ('load', 'ProgressEvent'),
|
| + 'XMLHttpRequestEventTarget.loadend': ('loadEnd', 'ProgressEvent'),
|
| + 'XMLHttpRequestEventTarget.loadstart': ('loadStart', 'ProgressEvent'),
|
| + 'XMLHttpRequestEventTarget.progress': ('progress', 'ProgressEvent'),
|
| 'XMLHttpRequest.readystatechange': ('readyStateChange', 'ProgressEvent'),
|
| - 'XMLHttpRequestUpload.abort': ('abort', 'ProgressEvent'),
|
| - 'XMLHttpRequestUpload.error': ('error', 'ProgressEvent'),
|
| - 'XMLHttpRequestUpload.load': ('load', 'ProgressEvent'),
|
| - 'XMLHttpRequestUpload.loadend': ('loadEnd', 'ProgressEvent'),
|
| - 'XMLHttpRequestUpload.loadstart': ('loadStart', 'ProgressEvent'),
|
| - 'XMLHttpRequestUpload.progress': ('progress', 'ProgressEvent'),
|
| })
|
|
|
| # These classes require an explicit declaration for the "on" method even though
|
|
|