| Index: tools/dom/scripts/htmlrenamer.py
|
| diff --git a/tools/dom/scripts/htmlrenamer.py b/tools/dom/scripts/htmlrenamer.py
|
| index c149025bba04abdcac3fd86bdd85248b1e02b64e..126b739abc8da5933d0b6543195c376a06664516 100644
|
| --- a/tools/dom/scripts/htmlrenamer.py
|
| +++ b/tools/dom/scripts/htmlrenamer.py
|
| @@ -237,6 +237,21 @@ private_html_members = monitored.Set('htmlrenamer.private_html_members', [
|
| 'Element.hasAttributeNS',
|
| 'Element.innerHTML',
|
| 'Element.querySelectorAll',
|
| + # TODO(vsm): These have been converted from int to double in Chrome 36.
|
| + # Special case them so we run on 34, 35, and 36.
|
| + 'Element.offsetLeft',
|
| + 'Element.offsetTop',
|
| + 'Element.offsetWidth',
|
| + 'Element.offsetHeight',
|
| + 'Element.clientLeft',
|
| + 'Element.clientTop',
|
| + 'Element.clientWidth',
|
| + 'Element.clientHeight',
|
| + 'Element.scrollLeft',
|
| + 'Element.scrollTop',
|
| + 'Element.scrollWidth',
|
| + 'Element.scrollHeight',
|
| +
|
| 'Event.initEvent',
|
| 'Geolocation.clearWatch',
|
| 'Geolocation.getCurrentPosition',
|
|
|