Using jQuery to append a script tag to the document will cause it to load the script with async:false and trigger this warning.
As in:
var script = $("<script></script>");
script.attr("src", player.basepath + "whatever.js");
$(document.body).append(script);
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…