Details
-
Improvement
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
-
None
-
1.4 RC2
Description
The book "High Performance Web Sites" by Steve Sounders identifies a number of issues which degrade web page rendering.
#1 If a JavaScript imports listed above CSS imports will delay the download of the CSS imports until the JS imports have completed.
#2 JavaScript blocks <script> </script> in the header of the page will delay the progressive rendering of HTML until the entire page has been downloaded.
The Click PageImports class could be modified to support $headerImports which include an ordered list of import statements, with JS imports following CSS imports. The class could also provide a $footerImports which contains JS blocks to be included at the bottom of the page.
To support backward compatability the $imports should still be maintained, but should have CSS imports listed above JS imports, with JS script blocks following last.