This morning, I've updated my GWT snapshot to the last one and I'm not able to run the super dev mode (with the flag -superDevMode) for my applications.
The problem comes from that the .nocache.js tries to add the compilation dialog to the body before the body is initialized.
Error:
Uncaught TypeError: Cannot read property 'appendChild' of null
in:
Dialog.prototype.show = function() {
$doc.body.appendChild(this.__overlay);
$doc.body.appendChild(this.__dialog);
};
$doc.body is null when the method is called. This method should be called when the html is fully loaded.
If I include the nocache.js script at the end of the body instead of in the head of the html, it works fine.
Julien