Parse and histogram LevelDB corruption errors.
[chromium-blink-merge.git] / third_party / webdriver / test_data / scroll5.html
blobb345a8c3f76ee7ee5dfc6726a5a5ada17b6deec1
1 <html>
2 <head>
3 </head>
4 <body>
5 <script>
6 function dump(text) {
7 document.getElementById('clicked').innerHTML = text;
9 </script>
10 <div style='overflow: scroll; width: 150px; height: 200px; background-color: yellow' id="outer">
11 <div style="width: 150px; height: 5000px; background-color: red;" onclick="dump('clicked')" id="inner">
12 </div>
13 </div>
14 <div>
15 Clicked: <span id='clicked'></span>
16 </div>
17 </body>
18 </html>