Index: Source/core/html/HTMLElement.idl |
diff --git a/Source/core/html/HTMLElement.idl b/Source/core/html/HTMLElement.idl |
index 26177d7cb2b91d5cd5edb7f1896e0f9d59d1641d..d106c3e431cfa36026e015bba56d1e92d3904091 100644 |
--- a/Source/core/html/HTMLElement.idl |
+++ b/Source/core/html/HTMLElement.idl |
@@ -43,6 +43,14 @@ interface HTMLElement : Element { |
[CustomElementCallbacks, RaisesException=Setter] attribute DOMString contentEditable; |
readonly attribute boolean isContentEditable; |
+ // CSSOM View Module |
+ // http://dev.w3.org/csswg/cssom-view/#extensions-to-the-htmlelement-interface |
+ [ImplementedAs=offsetParentForBindings, PerWorldBindings] readonly attribute Element? offsetParent; |
+ readonly attribute long offsetTop; |
+ readonly attribute long offsetLeft; |
+ readonly attribute long offsetWidth; |
+ readonly attribute long offsetHeight; |
+ |
// Input Method Editor API |
// https://dvcs.w3.org/hg/ime-api/raw-file/default/Overview.html#the-inputmethodcontext-property |
[RuntimeEnabled=IMEAPI] readonly attribute InputMethodContext? inputMethodContext; |