Tests: revert concurrency group change
[jquery.git] / test / data / offset / scroll.html
blob3b9848fe49c234e11341b487768459ae913b785a
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3 <html>
4 <head>
5 <meta http-equiv="Content-type" content="text/html; charset=utf-8">
6 <title>scroll</title>
7 <style type="text/css" media="screen">
8 body { margin: 1px; padding: 5px; }
9 div.scroll { position: relative; margin: 1px; border: 2px solid #000; padding: 5px; width: 100px; height: 100px; background: #fff; overflow: auto; }
10 #scroll-1 { top: 0; left: 0; }
11 #scroll-1-1 { top: 1px; left: 1px; }
12 #scroll-1-1-1 { top: 1px; left: 1px; }
13 #forceScroll { width: 5000px; height: 5000px; }
14 #hidden { display: none; }
15 #marker { position: absolute; border: 2px solid #000; width: 50px; height: 50px; background: #ccc; }
16 </style>
17 <script src="../../jquery.js"></script>
18 <script src="../iframeTest.js"></script>
19 <script type="text/javascript" charset="utf-8">
20 jQuery( function( $ ) {
21 window.scrollTo( 1000, 1000 );
22 $( "#scroll-1" )[ 0 ].scrollLeft = 5;
23 $( "#scroll-1" )[ 0 ].scrollTop = 5;
24 $( ".scroll" ).on( "click", function() {
25 $( "#marker" ).css( $( this ).offset() );
26 return false;
27 } );
28 startIframeTest();
29 } );
30 </script>
31 </head>
32 <body>
33 <div id="scroll-1" class="scroll">
34 <div id="scroll-1-1" class="scroll">
35 <div id="scroll-1-1-1" class="scroll"></div>
36 </div>
37 </div>
38 <div id="hidden"></div>
39 <div id="forceScroll"></div>
40 <div id="marker"></div>
41 <p class="instructions">Click the white box to move the marker to it.</p>
42 </body>
43 </html>