int get scrollTop => JS<num>('num', '#.scrollTop', this).round();
set scrollTop(int value) { JS("void", "#.scrollTop = #", this, value.round()); }