Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(460)

Unified Diff: third_party/WebKit/Source/core/html/HTMLElement.idl

Issue 2051703002: Implement closed shadow adjustment for Element.offsetParent (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698