Chromium Code Reviews| Index: Source/core/svg/SVGElement.idl |
| diff --git a/Source/core/svg/SVGElement.idl b/Source/core/svg/SVGElement.idl |
| index 1e4ac18c3bc13b741c065fd7cdb1115541069f1a..1bb5bdf78c057d1607dd6d8445583f10fbd2ee09 100644 |
| --- a/Source/core/svg/SVGElement.idl |
| +++ b/Source/core/svg/SVGElement.idl |
| @@ -31,6 +31,12 @@ interface SVGElement : Element { |
| [CustomElementCallbacks] attribute long tabIndex; |
| void focus(); |
| void blur(); |
| + |
| + [Measure, PerWorldBindings] readonly attribute Element? offsetParent; |
|
philipj_slow
2015/07/10 09:39:33
Document this as
// TODO(tanay.c): SVGElement.off
philipj_slow
2015/07/10 11:16:30
Make that crbug.com/463116 and also use BUG=463116
tanay.c
2015/07/14 11:02:45
Acknowledged.
tanay.c
2015/07/14 11:02:45
Done.
|
| + [Measure] readonly attribute long offsetTop; |
| + [Measure] readonly attribute long offsetLeft; |
| + [Measure] readonly attribute long offsetWidth; |
| + [Measure] readonly attribute long offsetHeight; |
| }; |
| SVGElement implements GlobalEventHandlers; |