Tests: revert concurrency group change
[jquery.git] / test / data / core / onready.html
blob1898ea7e7595dbab9d793d8a8d9aeda32c17a3c2
1 <!doctype html>
2 <html>
3 <head>
4 <meta http-equiv="Content-type" content="text/html; charset=utf-8"/>
5 <title>alias-masked DOM properties (trac-14074)</title>
6 <script>
7 var error = false;
8 window.onready = function() { error = "Called window.onready"; };
9 </script>
10 <script src="../../jquery.js"></script>
11 <script src="../iframeTest.js"></script>
12 </head>
13 <body>
14 <form>
15 <input type="text" id="nodeName"/>
16 </form>
17 <script>
18 jQuery(function() {
19 setTimeout( function() {
20 startIframeTest( error );
21 });
22 });
23 </script>
24 </body>
25 </html>