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

Unified Diff: lib/dom/scripts/systemhtml.py

Issue 10035039: Update fremontcut with current chrome feature defines (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add battery APIs Created 8 years, 8 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
Index: lib/dom/scripts/systemhtml.py
diff --git a/lib/dom/scripts/systemhtml.py b/lib/dom/scripts/systemhtml.py
index da19ea92731bcf85299264ba062811055ed47be2..ef8c2f258203f988db2eba841c6ccf3c420b8e95 100644
--- a/lib/dom/scripts/systemhtml.py
+++ b/lib/dom/scripts/systemhtml.py
@@ -311,6 +311,8 @@ _html_event_names = {
'canplay': 'canPlay',
'canplaythrough': 'canPlayThrough',
'change': 'change',
+ 'chargingchange': 'chargingChange',
+ 'chargingtimechange': 'chargingTimeChange',
'checking': 'checking',
'click': 'click',
'close': 'close',
@@ -324,6 +326,7 @@ _html_event_names = {
'dblclick': 'doubleClick',
'devicemotion': 'deviceMotion',
'deviceorientation': 'deviceOrientation',
+ 'dischargingtimechange': 'dischargingTimeChange',
'display': 'display',
'downloading': 'downloading',
'drag': 'drag',
@@ -347,6 +350,7 @@ _html_event_names = {
'keydown': 'keyDown',
'keypress': 'keyPress',
'keyup': 'keyUp',
+ 'levelchange': 'levelChange',
'load': 'load',
'loadeddata': 'loadedData',
'loadedmetadata': 'loadedMetadata',
@@ -416,6 +420,10 @@ _html_event_names = {
'webkitAnimationStart': 'animationStart',
'webkitfullscreenchange': 'fullscreenChange',
'webkitfullscreenerror': 'fullscreenError',
+ 'webkitkeyadded': 'keyAdded',
+ 'webkitkeyerror': 'keyError',
+ 'webkitkeymessage': 'keyMessage',
+ 'webkitneedkey': 'needKey',
'webkitSpeechChange': 'speechChange',
'webkitTransitionEnd': 'transitionEnd',
'write': 'write',

Powered by Google App Engine
This is Rietveld 408576698