4 Test for jQuery.readyWait. Needs to be a
5 standalone test since it deals with DOM
13 div { margin-top: 10px; }
14 #output { background-color: green }
15 #expectedOutput { background-color: green }
17 <script src="../src/core.js"></script>
18 <script src="../src/deferred.js"></script>
19 <script src="../src/support.js"></script>
20 <script src="../src/data.js"></script>
21 <script src="../src/queue.js"></script>
22 <script src="../src/attributes.js"></script>
23 <script src="../src/event.js"></script>
24 <script src="../src/sizzle/sizzle.js"></script>
25 <script src="../src/sizzle-jquery.js"></script>
26 <script src="../src/traversing.js"></script>
27 <script src="../src/manipulation.js"></script>
28 <script src="../src/css.js"></script>
29 <script src="../src/ajax.js"></script>
30 <script src="../src/ajax/jsonp.js"></script>
31 <script src="../src/ajax/script.js"></script>
32 <script src="../src/ajax/xhr.js"></script>
33 <script src="../src/effects.js"></script>
34 <script src="../src/offset.js"></script>
35 <script src="../src/dimensions.js"></script>
37 <!-- Load the script loader that uses
39 <script src="data/readywaitloader.js"></script>
41 <script type="text/javascript">
43 // The delayedMessage is defined by
44 // the readywaitasset.js file, so the
45 // next line will only work if this DOM
46 // ready callback is called after readyWait
47 // has been decremented by readywaitloader.js
48 // If an error occurs.
49 jQuery("#output").append(delayedMessage);
58 This is a test page for jQuery.readyWait, that was
59 added due to this ticket
60 <a href="http://bugs.jquery.com/ticket/6781">#6781</a>.
63 Test for jQuery.readyWait, which can be used
64 by plugins and other scripts to indicate something
65 important to the page is still loading and needs
66 to block the DOM ready callbacks that are registered
70 Script loaders are the most likely kind of script
71 to use jQuery.readyWait, but it could be used by
72 other things like a script that loads a CSS file
73 and wants to pause the DOM ready callbacks.
76 <strong>Expected Result</strong>: The text
77 <span id="expectedOutput">It Worked!</span>
78 appears below after about <strong>2 seconds.</strong>
81 If there is an error in the console,
82 or the text does not show up, then the test failed.
84 <div id="output"></div>