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

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

Issue 15434003: Exposing a number of new events. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 7 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/dom.json ('k') | no next file » | 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 cdbade3fe47e28d4efb5a33cb516db1cdb3a6d79..dd5b3f323991b84b7d9824052e769700c576e2ba 100644
--- a/tools/dom/scripts/htmleventgenerator.py
+++ b/tools/dom/scripts/htmleventgenerator.py
@@ -121,6 +121,7 @@ _html_event_types = monitored.Dict('htmleventgenerator._html_event_types', {
'DOMApplicationCache.progress': ('progress', 'Event'),
'DOMApplicationCache.updateready': ('updateReady', 'Event'),
'Document.readystatechange': ('readyStateChange', 'Event'),
+ 'Document.securitypolicyviolation': ('securityPolicyViolation', 'SecurityPolicyViolationEvent'),
'Document.selectionchange': ('selectionChange', 'Event'),
'Document.webkitpointerlockchange': ('pointerLockChange', 'Event'),
'Document.webkitpointerlockerror': ('pointerLockError', 'Event'),
@@ -135,8 +136,14 @@ _html_event_types = monitored.Dict('htmleventgenerator._html_event_types', {
'FileWriter.write': ('write', 'ProgressEvent'),
'FileWriter.writeend': ('writeEnd', 'ProgressEvent'),
'FileWriter.writestart': ('writeStart', 'ProgressEvent'),
+ 'FontLoader.load': ('load', 'CssFontFaceLoadEvent'),
+ 'FontLoader.loading': ('loading', 'CssFontFaceLoadEvent'),
+ 'FontLoader.loadingdone': ('loadingDone', 'CssFontFaceLoadEvent'),
+ 'FontLoader.loadstart': ('loadStart', 'CssFontFaceLoadEvent'),
'HTMLBodyElement.storage': ('storage', 'StorageEvent'),
'HTMLInputElement.webkitSpeechChange': ('speechChange', 'Event'),
+ 'HTMLFormElement.autocomplete': ('autocomplete', 'Event'),
+ 'HTMLFormElement.autocompleteerror': ('autocompleteError', 'AutocompleteErrorEvent'),
'HTMLMediaElement.loadstart': ('loadStart', 'Event'),
'HTMLMediaElement.progress': ('progress', 'Event'),
'HTMLMediaElement.show': ('show', 'Event'),
@@ -153,10 +160,12 @@ _html_event_types = monitored.Dict('htmleventgenerator._html_event_types', {
'MediaStream.removetrack': ('removeTrack', 'Event'),
'MediaStreamTrack.mute': ('mute', 'Event'),
'MediaStreamTrack.unmute': ('unmute', 'Event'),
+ 'MIDIPort.disconnect': ('disconnect', 'MIDIConnectionEvent'),
'Notification.click': ('click', 'Event'),
'Notification.close': ('close', 'Event'),
'Notification.display': ('display', 'Event'),
'Notification.show': ('show', 'Event'),
+ 'Performance.webkitresourcetimingbufferfull': ('resourceTimingBufferFull', 'Event'),
'RTCDTMFSender.tonechange': ('toneChange', 'RtcDtmfToneChangeEvent'),
'RTCDataChannel.close': ('close', 'Event'),
'RTCDataChannel.open': ('open', 'Event'),
@@ -179,6 +188,11 @@ _html_event_types = monitored.Dict('htmleventgenerator._html_event_types', {
'SpeechRecognition.speechend': ('speechEnd', 'Event'),
'SpeechRecognition.speechstart': ('speechStart', 'Event'),
'SpeechRecognition.start': ('start', 'Event'),
+ 'SpeechSynthesisUtterance.boundary': ('boundary', 'SpeechSynthesisEvent'),
+ 'SpeechSynthesisUtterance.end': ('end', 'SpeechSynthesisEvent'),
+ 'SpeechSynthesisUtterance.mark': ('mark', 'SpeechSynthesisEvent'),
+ 'SpeechSynthesisUtterance.resume': ('resume', 'SpeechSynthesisEvent'),
+ 'SpeechSynthesisUtterance.start': ('start', 'SpeechSynthesisEvent'),
'TextTrack.cuechange': ('cueChange', 'Event'),
'TextTrackCue.enter': ('enter', 'Event'),
'TextTrackCue.exit': ('exit', 'Event'),
« no previous file with comments | « tools/dom/dom.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698