This commit adds 'defer' to script tags, to allow the browser to keep load other parts of the page.
'defer' as apposed to 'async' keeps the order of execution of the linked files. It is also supported by most browsers (as pointed out in the following article). All files must still be loaded before DOMContentLoaded is called.
This commit adds 'defer' to script tags, to allow the browser to keep load other parts of the page.
'defer' as apposed to 'async' keeps the order of execution of the linked files. It is also supported by most browsers (as pointed out in the following article). All files must still be loaded before DOMContentLoaded is called.
http://webkit.org/blog/1395/running-scripts-in-webkit/