Yes, the scripts are those who are placed before the </body> tag. It’s a clean WP3.6 install (no additional plugins enabled).
My <head> looks like this:
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>WordPress 3.6 - PageSpeed Test</title>
<script type="text/javascript">
var asyncScripts = [];
var asyncFunctions = [];
var loadedScripts = [];
var scriptsToLoad = 0;
function execOnReady(func){
asyncFunctions.push(func);
}
</script>
<meta name='robots' content='noindex,nofollow' />
<link rel="alternate" type="application/rss+xml" title="WordPress 3.6 - PageSpeed Test ? Feed" href="https://mydomain.com/feed/" />
<link rel="alternate" type="application/rss+xml" title="WordPress 3.6 - PageSpeed Test ? Comments Feed" href="https://mydomain.com/comments/feed/" />
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://mydomain.com/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://mydomain.com/wp-includes/wlwmanifest.xml" />
<meta name="generator" content="WordPress 3.6" />
</head>
.....
Before </body>:
......
<script type="text/javascript">
asyncScripts = [];
function execDelayedScripts(){
if (scriptsToLoad<=0){
for (var i = 0; i < asyncFunctions.length; i++){
//~ setTimeout(asyncFunctions[i],250*i);
asyncFunctions[i]();
}
}else{
setTimeout(execDelayedScripts,100);
}
}
function loadAsyncScript(script){
if (typeof(script.deps) == 'object'){
for (var i = 0; i < script.deps.length; i++){
if (!include(loadedScripts,script.deps[i])){
setTimeout(function (){
loadAsyncScript(script);
},100);
return;
}
}
}
if (script.extra!=''){
var extra = document.createElement("script");
extra.setAttribute('type','text/javascript');
extra.innerHTML = script.extra;
document.body.appendChild(extra);
}
var element = document.createElement("script");
element.setAttribute('type','text/javascript');
element.src = decodeURIComponent(script.src.replace(/\+/g, ' '));
element.onload = function(){
scriptsToLoad--;
loadedScripts.push(script.name);
};
document.body.appendChild(element);
}
var include = Array.prototype.indexOf
?
function(arr, obj) { return arr.indexOf(obj) !== -1; }
:
function(arr, obj) {
for(var i = -1, j = arr.length; ++i < j;)
if(arr[i] === obj) return true;
return false;
};
if (window.addEventListener){
window.addEventListener("load", documentReady, false);
}else if (window.attachEvent){
window.attachEvent("onload", documentReady);
}else{
window.onload = documentReady;
}
scriptsToLoad = asyncScripts.length;
for (var i = 0; i < asyncScripts.length; i++){
loadAsyncScript(asyncScripts[i]);
}
//~
function documentReady() {
execDelayedScripts();
}
</script>
<link rel='stylesheet' href='https://mydomain.com/wp-content/themes/tvdb/css/reset.min.css' type='text/css' media='all' />
<link rel='stylesheet' href='https://mydomain.com/wp-content/themes/tvdb/css/tvdb.min.css' type='text/css' media='all' />
</body>
</html>