Reading the GWT Bootstrap page on a Google page, I have a question. ( http://code.google.com/p/google-web-toolkit-doc-1-5/wiki/FAQ_WhenDoModulesLoad )
Assumptions: Most browsers allow you to receive a maximum of two simultaneous connections to obtain resources.
HTML page:
<html>
<body onload='alert("w00t!")'>
<img src='bigImageZero.jpg'></img>
<script source='externalScriptZero.js'></script>
<img src='bigImageOne.jpg'></img>
<img src='reallyBigImageTwo.jpg'></img>
<script src='com.example.app.App.nocache.js'></script>
<script src='externalScriptOne.js'></script>
</body>
</html>
So, bootstrap consists of: