| Index: tools/dom/scripts/htmlrenamer.py
|
| diff --git a/tools/dom/scripts/htmlrenamer.py b/tools/dom/scripts/htmlrenamer.py
|
| index 6f029b26a3319b010885e251287aeaceac0f9269..0561c2777518e52d70f8109a27d5aefef10443c9 100644
|
| --- a/tools/dom/scripts/htmlrenamer.py
|
| +++ b/tools/dom/scripts/htmlrenamer.py
|
| @@ -24,7 +24,6 @@ html_interface_renames = monitored.Dict('htmlrenamer.html_interface_renames', {
|
| 'SVGException': 'SvgException', # Manual of avoid conflict with Exception.
|
| 'SVGSVGElement': 'SvgSvgElement', # Manual to avoid name conflicts.
|
| 'WebGLVertexArrayObjectOES': 'WebGLVertexArrayObject',
|
| - 'WebKitAnimation': 'Animation',
|
| 'WebKitAnimationEvent': 'AnimationEvent',
|
| 'WebKitCSSKeyframeRule': 'CssKeyframeRule',
|
| 'WebKitCSSKeyframesRule': 'CssKeyframesRule',
|
| @@ -139,6 +138,9 @@ _private_html_members = monitored.Set('htmlrenamer._private_html_members', [
|
| _renamed_html_members = monitored.Dict('htmlrenamer._renamed_html_members', {
|
| 'DOMURL.createObjectURL': 'createObjectUrl',
|
| 'DOMURL.revokeObjectURL': 'revokeObjectUrl',
|
| + 'DOMWindow.webkitNotifications': 'notifications',
|
| + 'DOMWindow.webkitRequestFileSystem': 'requestFileSystem',
|
| + 'DOMWindow.webkitResolveLocalFileSystemURL': 'resolveLocalFileSystemUrl',
|
| 'DOMWindow.webkitRequestFileSystem': 'requestFileSystem',
|
| 'DOMWindow.webkitResolveLocalFileSystemURL': 'resolveLocalFileSystemUrl',
|
| 'Document.createCDATASection': 'createCDataSection',
|
| @@ -245,6 +247,32 @@ _removed_html_members = monitored.Set('htmlrenamer._removed_html_members', [
|
| 'Document.xmlStandalone',
|
| 'Document.xmlVersion',
|
| 'DocumentType.*',
|
| + 'DOMCoreException.code',
|
| + 'DOMCoreException.ABORT_ERR',
|
| + 'DOMCoreException.DATA_CLONE_ERR',
|
| + 'DOMCoreException.DOMSTRING_SIZE_ERR',
|
| + 'DOMCoreException.HIERARCHY_REQUEST_ERR',
|
| + 'DOMCoreException.INDEX_SIZE_ERR',
|
| + 'DOMCoreException.INUSE_ATTRIBUTE_ERR',
|
| + 'DOMCoreException.INVALID_ACCESS_ERR',
|
| + 'DOMCoreException.INVALID_CHARACTER_ERR',
|
| + 'DOMCoreException.INVALID_MODIFICATION_ERR',
|
| + 'DOMCoreException.INVALID_NODE_TYPE_ERR',
|
| + 'DOMCoreException.INVALID_STATE_ERR',
|
| + 'DOMCoreException.NAMESPACE_ERR',
|
| + 'DOMCoreException.NETWORK_ERR',
|
| + 'DOMCoreException.NOT_FOUND_ERR',
|
| + 'DOMCoreException.NOT_SUPPORTED_ERR',
|
| + 'DOMCoreException.NO_DATA_ALLOWED_ERR',
|
| + 'DOMCoreException.NO_MODIFICATION_ALLOWED_ERR',
|
| + 'DOMCoreException.QUOTA_EXCEEDED_ERR',
|
| + 'DOMCoreException.SECURITY_ERR',
|
| + 'DOMCoreException.SYNTAX_ERR',
|
| + 'DOMCoreException.TIMEOUT_ERR',
|
| + 'DOMCoreException.TYPE_MISMATCH_ERR',
|
| + 'DOMCoreException.URL_MISMATCH_ERR',
|
| + 'DOMCoreException.VALIDATION_ERR',
|
| + 'DOMCoreException.WRONG_DOCUMENT_ERR',
|
| 'Element.accessKey',
|
| 'Element.get:classList',
|
| 'Element.getAttributeNode',
|
|
|