Tests: revert concurrency group change
[jquery.git] / test / data / offset / body.html
bloba27e242affbe0c22bca0bd6f28026e8dd4d3d75b
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>body</title>
7 <style type="text/css" media="screen">
8 body { margin: 1px; padding: 5px; position: relative }
9 #marker { position: absolute; border: 2px solid #000; width: 50px; height: 50px; background: #ccc; }
10 #firstElement { width: 50px; height: 50px; background: green; }
11 </style>
12 <script src="../../jquery.js"></script>
13 <script src="../iframeTest.js"></script>
14 <script type="text/javascript" charset="utf-8">
15 jQuery( function( $ ) {
16 $( "body" ).on( "click", function() {
17 $( "#marker" ).css( $( this ).offset() );
18 return false;
19 } );
20 startIframeTest();
21 } );
22 </script>
23 </head>
24 <body>
25 <div id="firstElement"></div>
26 <div id="marker"></div>
27 </body>
28 </html>