Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / events / panScroll-event-fired.html
blobdfe33f40b4962dba74f8f8723571b12ac94605a2
1 <html>
2 <head>
3 <style type="text/css">
4 #scrollable {
5 height: 200px;
6 overflow: auto;
7 border: solid 3px #cc0000;
8 font-size: 80px;
10 </style>
11 <script src="../../resources/js-test.js"></script>
12 <script src="./resources/panScroll.js"></script>
13 <script>
14 window.addEventListener('mousedown', function(event) {
15 });
17 function start()
19 description('Check pan scroll with mousedown event handler');
20 testPanScroll({
21 'clickOrDrag': 'drag',
22 'scrollable': $('scrollable'),
23 });
25 </script>
26 </head>
27 <body onload="start()">
28 <div id="container">
29 <p id="description"></p>
30 Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=32303">bug 32303</a> This tests that pan
31 scrolling works without event.preventDefault and the middle button mousedown event is fired.
32 To test manually, try to pan scroll inside this div.
33 <div id="scrollable"></div>
34 </div>
35 <div id="console"></div>
36 </body>
37 </html>