1<head>
2<script>
3function addFrameText() {
4  frameDoc = window.frames[0].document;
5  item = frameDoc.createElement("p");
6  item.appendChild(frameDoc.createTextNode("Hello, world!"));
7  for (i = 0; i < 1000; ++i) {
8    frameDoc.body.appendChild(item.cloneNode(true));
9  }
10}
11</script>
12</head>
13
14<body onload="javascript:addFrameText()">
15
16<p>Test for <a href="http://bugs.webkit.org/show_bug.cgi?id=11718">bug 11718</a>:
17When I mouse up after dragging a selection outside of a iframe, the iframe continues to scroll automatically.</p>
18
19<p>Make the frame autoscroll by moving the mouse pointer outside of it while selecting. 
20Autoscrolling should stop when you release the mouse button outside the frame (in the main frame, 
21in another subframe, or just outside the window).</p>
22
23<p>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=49209">bug 49209</a>:
24Open another page in a different tab, middle click in the first iframe, scroll up, and select the other tab. The pan scrolling
25cursor should disappear, and you should exit pan scrolling mode.</p>
26
27<IFRAME FRAMEBORDER=1></IFRAME>
28<br>
29<IFRAME FRAMEBORDER=1></IFRAME>
30
31</body>
32</html>
33