projecte_ionic/node_modules/selenium-webdriver/lib/test/data/scroll5.html
2022-02-09 18:30:03 +01:00

18 lines
411 B
HTML
Executable file

<html>
<head>
</head>
<body>
<script>
function dump(text) {
document.getElementById('clicked').innerHTML = text;
}
</script>
<div style='overflow: scroll; width: 150px; height: 200px; background-color: yellow' id="outer">
<div style="width: 150px; height: 5000px; background-color: red;" onclick="dump('clicked')" id="inner">
</div>
</div>
<div>
Clicked: <span id='clicked'></span>
</div>
</body>
</html>