Index: third_party/WebKit/Source/core/html/HTMLElement.idl |
diff --git a/third_party/WebKit/Source/core/html/HTMLElement.idl b/third_party/WebKit/Source/core/html/HTMLElement.idl |
index 6b33617f0815c65b368b22c8b9833cf89f967fa7..e20faa31ca3f7d3c3482001ddda3b5f3c6dd3165 100644 |
--- a/third_party/WebKit/Source/core/html/HTMLElement.idl |
+++ b/third_party/WebKit/Source/core/html/HTMLElement.idl |
@@ -46,11 +46,11 @@ interface HTMLElement : Element { |
// CSSOM View Module |
// http://dev.w3.org/csswg/cssom-view/#extensions-to-the-htmlelement-interface |
- [PerWorldBindings] readonly attribute Element? offsetParent; |
- readonly attribute long offsetTop; |
- readonly attribute long offsetLeft; |
- readonly attribute long offsetWidth; |
- readonly attribute long offsetHeight; |
+ [PerWorldBindings, ImplementedAs=unclosedOffsetParent] readonly attribute Element? offsetParent; |
+ [ImplementedAs=offsetTopForBinding] readonly attribute long offsetTop; |
+ [ImplementedAs=offsetLeftForBinding] readonly attribute long offsetLeft; |
+ [ImplementedAs=offsetWidthForBinding] readonly attribute long offsetWidth; |
+ [ImplementedAs=offsetHeightForBinding] readonly attribute long offsetHeight; |
// CSS Object Model (CSSOM) |
// http://dev.w3.org/csswg/cssom/#the-elementcssinlinestyle-interface |