Kargi-Sitesi/node_modules/selenium-webdriver/lib/test/data/scroll5.html

19 lines
411 B
HTML
Raw Normal View History

2024-11-03 21:30:09 -05:00
<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>