| Index: tools/dom/scripts/htmlrenamer.py
|
| diff --git a/tools/dom/scripts/htmlrenamer.py b/tools/dom/scripts/htmlrenamer.py
|
| index 665cc293f7560f8d30bfd9aceeb39e31872b107c..1d6020d3b7db683e0a7aea49f5c7c65bbf51c643 100644
|
| --- a/tools/dom/scripts/htmlrenamer.py
|
| +++ b/tools/dom/scripts/htmlrenamer.py
|
| @@ -241,11 +241,14 @@ private_html_members = monitored.Set('htmlrenamer.private_html_members', [
|
| 'Document.title',
|
| 'Document.webkitCancelFullScreen',
|
| 'Document.webkitExitFullscreen',
|
| + # Not prefixed.
|
| 'Document.webkitFullscreenElement',
|
| 'Document.webkitFullscreenEnabled',
|
| 'Document.webkitHidden',
|
| 'Document.webkitIsFullScreen',
|
| 'Document.webkitVisibilityState',
|
| + # Not prefixed but requires custom implementation for cross-browser compatibility.
|
| + 'Document.visibilityState',
|
|
|
| 'Element.animate',
|
| 'Element.children',
|
| @@ -509,6 +512,7 @@ for member in convert_to_future_members:
|
| # subclasses.
|
| # TODO(jacobr): cleanup and augment this list.
|
| removed_html_members = monitored.Set('htmlrenamer.removed_html_members', [
|
| + 'Attr.textContent', # Not needed as it is the same as Node.textContent.
|
| 'AudioBufferSourceNode.looping', # TODO(vsm): Use deprecated IDL annotation
|
| 'CSSStyleDeclaration.getPropertyCSSValue',
|
| 'CanvasRenderingContext2D.clearShadow',
|
|
|