Index: core/dom/Element.idl |
diff --git a/core/dom/Element.idl b/core/dom/Element.idl |
index 89e5e7c87f1ee6b5c87f433b0b597c6dac1f8fcf..688db840e6f3bac54291edda62a78a778c6c2918 100644 |
--- a/core/dom/Element.idl |
+++ b/core/dom/Element.idl |
@@ -19,7 +19,7 @@ |
*/ |
[ |
- SpecialWrapFor=HTMLElement|SVGElement, |
+ SpecialWrapFor=(HTMLElement,SVGElement), |
] interface Element : Node { |
// DOM Level 1 Core |
@@ -55,7 +55,7 @@ |
[Reflect, DartNoAutoScope] attribute DOMString id; |
readonly attribute DOMString? namespaceURI; |
[RaisesException=Setter] attribute DOMString? prefix; |
- readonly attribute DOMString? localName; |
+ [DartCustom] readonly attribute DOMString? localName; |
[RaisesException] boolean matches(DOMString selectors); |
@@ -75,8 +75,8 @@ |
// attribute (Dictionary or double) scrollLeft; |
// attribute (Dictionary or double) scrollTop; |
// http://crbug.com/240176 |
- [Custom=Setter] attribute long scrollLeft; |
- [Custom=Setter] attribute long scrollTop; |
+ [Custom=Setter] attribute double scrollLeft; |
+ [Custom=Setter] attribute double scrollTop; |
readonly attribute long scrollWidth; |
readonly attribute long scrollHeight; |