<html> | |
<import src="/sky/examples/city-list/city-list.sky" /> | |
<city-list></city-list> | |
<script> | |
var cityList = document.querySelector('city-list'); | |
var scrolled = false | |
cityList.addEventListener('load', function() { | |
if (scrolled) { | |
internals.notifyTestComplete(internals.renderTreeAsText()); | |
} else { | |
scrolled = true; | |
setTimeout(function() { | |
cityList.scrollBy(200); | |
}, 0); | |
} | |
}); | |
</script> | |
</html> |