Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / events / resources / subframe-with-scrollable-div.html
blobef0f28756d549667c350a090096925e963635251
1 <html><body>
2 <div id="scrollable" style="overflow-y:scroll;height:500px">
3 <div style="height:1000px;width:500px;">
4 Scrollable content.
5 </div>
6 </div>
7 <script type="text/javascript">
8 document.getElementById('scrollable').addEventListener('mousedown',
9 function(evt) {
10 evt.preventDefault();
11 });
12 </script></body></html>