Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(43)

Unified Diff: tools/dom/scripts/htmleventgenerator.py

Issue 23829002: Checkpoint in changes to match push (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: We were missing onReadyStateChange Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/dom/scripts/generator.py ('k') | tools/dom/scripts/htmlrenamer.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « tools/dom/scripts/generator.py ('k') | tools/dom/scripts/htmlrenamer.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698