| Index: tools/dom/templates/html/impl/impl_Element.darttemplate
|
| diff --git a/tools/dom/templates/html/impl/impl_Element.darttemplate b/tools/dom/templates/html/impl/impl_Element.darttemplate
|
| index f1cf5073d2e10778aaaf8b1fa0170477e0f2b9a7..210ef42ee51e9a41ae6acdf8acec2644c536bfb4 100644
|
| --- a/tools/dom/templates/html/impl/impl_Element.darttemplate
|
| +++ b/tools/dom/templates/html/impl/impl_Element.darttemplate
|
| @@ -1368,7 +1368,9 @@ $if DART2JS
|
|
|
| @DomName('Element.scrollLeft')
|
| @DocsEditable()
|
| - void set scrollLeft(int value) => JS("void", "#.scrollLeft = #", this, value.round());
|
| + void set scrollLeft(int value) {
|
| + JS("void", "#.scrollLeft = #", this, value.round());
|
| + }
|
|
|
| @DomName('Element.scrollTop')
|
| @DocsEditable()
|
| @@ -1376,7 +1378,9 @@ $if DART2JS
|
|
|
| @DomName('Element.scrollTop')
|
| @DocsEditable()
|
| - void set scrollTop(int value) => JS("void", "#.scrollTop = #", this, value.round());
|
| + void set scrollTop(int value) {
|
| + JS("void", "#.scrollTop = #", this, value.round());
|
| + }
|
|
|
| @DomName('Element.scrollWidth')
|
| @DocsEditable()
|
|
|